Skip to content

Commit 734fa06

Browse files
author
Nathan Lee
committed
Added restart kwargs consumption for constructor
1 parent 68e0bfa commit 734fa06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyrunner/core/pyrunner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self, **kwargs):
4949
self._init_params = {
5050
'config_file' : kwargs.get('config_file'),
5151
'proc_file' : kwargs.get('proc_file'),
52-
'restart' : False,
52+
'restart' : kwargs.get('restart', False),
5353
'cvar_list' : [],
5454
'exec_proc_name' : None,
5555
'exec_only_list' : [],

pyrunner/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.2.2'
1+
__version__ = '4.2.3'

0 commit comments

Comments
 (0)