Skip to content

Commit

Permalink
Added restart kwargs consumption for constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Lee committed Dec 17, 2019
1 parent 68e0bfa commit 734fa06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyrunner/core/pyrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, **kwargs):
self._init_params = {
'config_file' : kwargs.get('config_file'),
'proc_file' : kwargs.get('proc_file'),
'restart' : False,
'restart' : kwargs.get('restart', False),
'cvar_list' : [],
'exec_proc_name' : None,
'exec_only_list' : [],
Expand Down
2 changes: 1 addition & 1 deletion pyrunner/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.2.2'
__version__ = '4.2.3'

0 comments on commit 734fa06

Please sign in to comment.