Commit 681eab11 by Brian Coca

fix adhoc that broke with assuming step is always in options

parent 88e1ef8c
...@@ -69,7 +69,7 @@ class StrategyBase: ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment