Skip to content

Commit 3940890

Browse files
committed
BHaH_psi4_to_phase_amp_omega_FFI_strain_psi4check.py: remove runtime error
1 parent e1b67c3 commit 3940890

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

BHaH_psi4_to_phase_amp_omega_FFI_strain_psi4check.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,8 @@ def main() -> None:
341341
and r/M value are provided via the command line.
342342
"""
343343
if len(sys.argv) != 2:
344-
raise RuntimeError(
345-
"Usage: python3 BHaH_psi4_to_phase_amp_omega_FFI_strain_psi4check.py <extraction radius (r/M)>"
346-
)
344+
print("Usage: python3 BHaH_psi4_to_phase_amp_omega_FFI_strain_psi4check.py <extraction radius (r/M)>")
345+
sys.exit()
347346
extraction_radius = float(sys.argv[1])
348347
generic_file_name = construct_generic_filename(extraction_radius)
349348

0 commit comments

Comments
 (0)