We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0df299 commit 6b322b6Copy full SHA for 6b322b6
notebooks/ccdc_notebook_utilities/run_hermes.py
@@ -21,6 +21,6 @@ def run_hermes(*filenames):
21
try:
22
hermes_dir = Path( csd_directory() ) / '..' / '..' / 'ccdc-software' / 'hermes'
23
hermes_exe = (hermes_dir/ 'hermes.exe' if platform().startswith('Windows') else hermes_dir/ 'hermes').as_posix()
24
- status = Popen([hermes_exe, *filenames], creationflags=0x00000008)
+ _ = Popen([hermes_exe, *filenames], creationflags=0x00000008)
25
except Exception as e:
26
print( f"Couldnt run Hermes {e}")
0 commit comments