don't set cwd on import
This commit is contained in:
		
							parent
							
								
									c6cd4a9681
								
							
						
					
					
						commit
						128be8df89
					
				| 
						 | 
				
			
			@ -8,7 +8,8 @@ import atexit
 | 
			
		|||
import sys
 | 
			
		||||
import os
 | 
			
		||||
 | 
			
		||||
os.chdir(os.path.split(sys.argv[0])[0])  # set to local folder, so that options yamls can be found
 | 
			
		||||
if __name__ == "__main__":
 | 
			
		||||
    os.chdir(os.path.split(sys.argv[0])[0])  # set to local folder, so that options yamls can be found
 | 
			
		||||
 | 
			
		||||
exit_func = atexit.register(input, "Press enter to close.")
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue