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.
|
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
|
Init all variables and object the bot need to work
|
||||||
:param config: configuration dict, you can use the Configuration.get_config()
|
:param config: configuration dict, you can use the Configuration.get_config()
|
||||||
|
Loading…
Reference in New Issue
Block a user