Fix typehints

This commit is contained in:
Matthias
2018-08-01 21:58:32 +02:00
parent 915160f21f
commit 9c08cdc81d
2 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ class FreqtradeBot(object):
self.persistence = None
self.exchange = Exchange(self.config)
self._init_modules()
self._klines = {}
self._klines: Dict[str, List[Dict]] = {}
def _init_modules(self) -> None:
"""