Skip to content

Commit

Permalink
Run: fix missing argument for class
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun Persaud committed Sep 29, 2024
1 parent 3f3d223 commit efd920f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymcnp/cli/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def main(argv: list[str] = sys.argv[1:]) -> None:
print(_io.INFO_RUNNING_MCNP)

inpts = _save.Save.get_save()
run = Run()
run = Run(".")
run.filename = inpts[argv[0]][0]
run.inpt = inpts[argv[0]][1]

Expand Down

0 comments on commit efd920f

Please sign in to comment.