removing unnecessary constructor docstring

This commit is contained in:
misagh 2018-10-01 17:11:48 +02:00
parent 2a9ca9a3dc
commit aa1948750f

View File

@ -23,11 +23,9 @@ logger = logging.getLogger(__name__)
class Edge():
config: Dict = {}
_cached_pairs: list = []
def __init__(self, config: Dict[str, Any], exchange=None) -> None:
"""
constructor
"""
self.config = config
self.strategy: IStrategy = StrategyResolver(self.config).strategy
self.ticker_interval = self.strategy.ticker_interval