Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Oct 16, 2023
1 parent 9aa79d6 commit 7daa1cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jarvis_util/shell/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, cmd, exec_info=None):
self.exec_ = MpichExec(cmd, exec_info)
elif exec_type == ExecType.OPENMPI:
self.exec_ = OpenMpiExec(cmd, exec_info)
elif exec_type == Exectype.CRAY_MPICH:
elif exec_type == ExecType.CRAY_MPICH:
self.exec_ = CrayMpichExec(cmd, exec_info)

self.set_exit_code()
Expand Down

0 comments on commit 7daa1cb

Please sign in to comment.