Removed typing.List from bibox, hitbtc and kucoin

This commit is contained in:
Sam Germain 2021-11-13 06:21:17 -06:00
parent 3c509a1f9b
commit 867ac3f82a
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
""" Bibox exchange subclass """ """ Bibox exchange subclass """
import logging import logging
from typing import Dict, List from typing import Dict
from freqtrade.exchange import Exchange from freqtrade.exchange import Exchange

View File

@ -1,5 +1,5 @@
import logging import logging
from typing import Dict, List from typing import Dict
from freqtrade.exchange import Exchange from freqtrade.exchange import Exchange

View File

@ -1,6 +1,6 @@
""" Kucoin exchange subclass """ """ Kucoin exchange subclass """
import logging import logging
from typing import Dict, List from typing import Dict
from freqtrade.exchange import Exchange from freqtrade.exchange import Exchange