mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
remove invalid typehint from ctor
This commit is contained in:
parent
90be78b283
commit
1074415d30
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue
Block a user