PEP8, remove unused imports

This commit is contained in:
enenn
2018-02-04 14:16:11 +01:00
parent 1b57c6e8a5
commit 567f252eae
5 changed files with 14 additions and 18 deletions

View File

@@ -1,17 +1,14 @@
# pragma pylint: disable=W0603
""" Cryptocurrency Exchanges support """
import enum
import logging
import ccxt
from random import randint
from typing import List, Dict, Any, Optional
import arrow
import requests
from cachetools import cached, TTLCache
from freqtrade import OperationalException
from freqtrade.exchange.interface import Exchange
logger = logging.getLogger(__name__)