Skip to content

Commit 6b322b6

Browse files
committed
Apparently my code smells ... fixed unused variable (NO_JIRA)
1 parent a0df299 commit 6b322b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/ccdc_notebook_utilities/run_hermes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ def run_hermes(*filenames):
2121
try:
2222
hermes_dir = Path( csd_directory() ) / '..' / '..' / 'ccdc-software' / 'hermes'
2323
hermes_exe = (hermes_dir/ 'hermes.exe' if platform().startswith('Windows') else hermes_dir/ 'hermes').as_posix()
24-
status = Popen([hermes_exe, *filenames], creationflags=0x00000008)
24+
_ = Popen([hermes_exe, *filenames], creationflags=0x00000008)
2525
except Exception as e:
2626
print( f"Couldnt run Hermes {e}")

0 commit comments

Comments
 (0)