change dict type to Any

This commit is contained in:
misagh 2018-11-18 14:57:03 +01:00
parent 9c549f4513
commit c033378048

View File

@ -1,7 +1,7 @@
# pragma pylint: disable=W0603 # pragma pylint: disable=W0603
""" Wallet """ """ Wallet """
import logging import logging
from typing import Dict from typing import Dict, Any
from collections import namedtuple from collections import namedtuple
from freqtrade.exchange import Exchange from freqtrade.exchange import Exchange
@ -18,7 +18,7 @@ class Wallets(object):
def __init__(self, exchange: Exchange) -> None: def __init__(self, exchange: Exchange) -> None:
self.exchange = exchange self.exchange = exchange
self.wallets: Dict[str, self.wallet] = {} self.wallets: Dict[str, Any] = {}
self.update() self.update()
def update(self) -> None: def update(self) -> None: