remove invalid typehint from ctor

This commit is contained in:
gcarq 2018-03-17 22:18:25 +01:00
parent 90be78b283
commit 1074415d30
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class FreqtradeBot(object):
This is from here the bot start its logic.
"""
def __init__(self, config: Dict[str, Any], db_url: Optional[str] = None) -> bool:
def __init__(self, config: Dict[str, Any], db_url: Optional[str] = None):
"""
Init all variables and object the bot need to work
:param config: configuration dict, you can use the Configuration.get_config()