fix adhoc that broke with assuming step is always in options
This commit is contained in:
parent
88e1ef8c9b
commit
681eab1158
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class StrategyBase:
|
||||||
self._variable_manager = tqm.get_variable_manager()
|
self._variable_manager = tqm.get_variable_manager()
|
||||||
self._loader = tqm.get_loader()
|
self._loader = tqm.get_loader()
|
||||||
self._final_q = tqm._final_q
|
self._final_q = tqm._final_q
|
||||||
self._step = tqm._options.step
|
self._step = getattr(tqm._options, 'step', False)
|
||||||
self._display = display
|
self._display = display
|
||||||
|
|
||||||
# internal counters
|
# internal counters
|
||||||
|
|
Loading…
Reference in a new issue