removed wrong comment: tuple is not created here

This commit is contained in:
hroff-1902 2019-02-21 00:47:18 +03:00
parent 2aba9c081c
commit c1ef6940b0

View File

@ -159,7 +159,6 @@ class Exchange(object):
return self._api.id
def klines(self, pair_interval: Tuple[str, str], copy=True) -> DataFrame:
# create key tuple
if pair_interval in self._klines:
return self._klines[pair_interval].copy() if copy else self._klines[pair_interval]
else: