Skip to content

Commit c997f02

Browse files
committed
removed %1 = 0 since it was not truly necessary
1 parent 985c15b commit c997f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

freqtrade/data/converter/trade_converter_kraken.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def import_kraken_trades_from_csv(config: Config, convert_to: str):
7171

7272
# drop any row not having a number in the column timestamp
7373
timestamp_numeric = pd.to_numeric(trades["timestamp"], errors="coerce")
74-
trades = trades[timestamp_numeric.notna() & (timestamp_numeric % 1 == 0)]
74+
trades = trades[timestamp_numeric.notna()]
7575

7676
trades.loc[:, "timestamp"] = trades["timestamp"] * 1e3
7777
trades.loc[:, "cost"] = trades["price"] * trades["amount"]

0 commit comments

Comments
 (0)