Revert "Fix --export trades in backtesting"

This reverts commit a845630749.
This commit is contained in:
Matthias Voppichler 2018-03-13 20:15:11 +01:00
parent a845630749
commit c4163374d6

View File

@ -62,7 +62,7 @@ def common_datearray(dfs):
def file_dump_json(filename, data) -> None:
with open(filename, 'w') as fp:
json.dump(data, fp, default=str)
json.dump(data, fp)
@synchronized