File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 33import subprocess as sp
44from pathlib import Path
55
6- from omv .common .inout import inform , trim_path , is_verbose , check_output
7- from omv .engines .engine import OMVEngine , EngineExecutionError
6+ from omv .common .inout import check_output , inform , is_verbose , trim_path
7+ from omv .engines .engine import EngineExecutionError , OMVEngine
88
99
1010class JNeuroMLEngine (OMVEngine ):
@@ -27,9 +27,7 @@ def get_environment():
2727 @staticmethod
2828 def get_executable ():
2929 environment_vars = JNeuroMLEngine .get_environment ()
30- jnml = os .path .join (
31- environment_vars ["JNML_HOME" ], JNeuroMLEngine .e_name if os .name != "nt" else "jnml.bat"
32- )
30+ jnml = os .path .join (environment_vars ["JNML_HOME" ], JNeuroMLEngine .e_name )
3331 return jnml
3432
3533 @staticmethod
You can’t perform that action at this time.
0 commit comments