whitespace fix

This commit is contained in:
Matthias Voppichler 2018-03-26 23:16:41 +02:00
parent 9d2b7c1fc0
commit 756bd63e1d
1 changed files with 1 additions and 2 deletions

View File

@ -84,9 +84,8 @@ def convert_dataframe(frame: DataFrame):
return list(list(x) for x in zip(*by_column))
def convert_file(filename: str, filename_new: str):
"""Converts a file following the old format to the new format"""
"""Converts a file from old format to ccxt format"""
pairdata = load_old_file(filename)
if pairdata and type(pairdata) is list and len(pairdata) > 0:
if type(pairdata[0]) is list: