Skip to content

Commit 384a44d

Browse files
authored
Merge pull request #35 from Aljaz-R/styling
corrected subprocess call code so it's called as a module
2 parents 0909d46 + 84aeaf5 commit 384a44d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niaaml_gui/windows/threads/pipeline_runner_thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def run(self):
3939
}
4040

4141
process = subprocess.Popen(
42-
["python", "niaaml_gui/utils/run_pipeline_subprocess.py"],
42+
["python", "-m", "niaaml_gui.utils.run_pipeline_subprocess"],
4343
stdin=subprocess.PIPE,
4444
stdout=subprocess.PIPE,
4545
stderr=subprocess.STDOUT,

0 commit comments

Comments
 (0)