ticker_interval as int (instead of string)

This commit is contained in:
Samuel Husso
2018-01-22 10:39:26 +02:00
parent 408f120612
commit 757a46ab12
5 changed files with 5 additions and 5 deletions

View File

@@ -476,7 +476,7 @@ def main(sysargv=sys.argv[1:]) -> None:
_process,
min_secs=_CONF['internals'].get('process_throttle_secs', 10),
nb_assets=args.dynamic_whitelist,
interval=int(_CONF.get('ticker_interval', "5"))
interval=int(_CONF.get('ticker_interval', 5))
)
old_state = new_state
except KeyboardInterrupt: