From 1074415d30105010dedf1aa3e5f6e5741135c68b Mon Sep 17 00:00:00 2001 From: gcarq Date: Sat, 17 Mar 2018 22:18:25 +0100 Subject: [PATCH] remove invalid typehint from ctor --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index b18d6540b..08ef74bbd 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -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()