This commit is contained in:
hroff-1902 2019-04-30 10:29:49 +03:00
parent 6166e19405
commit 537c03504f

View File

@ -71,7 +71,7 @@ class Worker(object):
while True: while True:
state = self._worker(old_state=state) state = self._worker(old_state=state)
if state == State.RELOAD_CONF: if state == State.RELOAD_CONF:
self.freqtrade = self._reconfigure() self._reconfigure()
def _worker(self, old_state: State, throttle_secs: Optional[float] = None) -> State: def _worker(self, old_state: State, throttle_secs: Optional[float] = None) -> State:
""" """