diff options
Diffstat (limited to 'gn3/computations')
-rw-r--r-- | gn3/computations/rust_correlation.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gn3/computations/rust_correlation.py b/gn3/computations/rust_correlation.py index 16af13e..a3802ae 100644 --- a/gn3/computations/rust_correlation.py +++ b/gn3/computations/rust_correlation.py @@ -3,11 +3,11 @@ import subprocess from gn3.settings import CORRELATION_COMMAND from gn3.settings import TMPDIR -def run_correlation(file_name:&str,outputdir:str = TMPDIR): +def run_correlation(file_name: & str, outputdir: str = TMPDIR): - command_list = [CORRELATION_COMMAND, file_name,outputdir] + command_list = [CORRELATION_COMMAND, file_name, outputdir] - results = subprocess.run(command_list, check=True) + results = subprocess.run(command_list, check=True) - return results + return results |