Fix flake8 mypy

This commit is contained in:
Paul D. Mendes
2020-05-11 20:13:06 +04:00
parent a8f523adae
commit a5bfa5515c
2 changed files with 5 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ class DataProvider:
def __init__(self, config: dict, exchange: Exchange, pairlists=None) -> None:
self._config = config
self._exchange = exchange
self._pairlists: Optional = pairlists
self._pairlists = pairlists
def refresh(self,
pairlist: List[Tuple[str, str]],