Skip to content

Commit

Permalink
trigger ci fail
Browse files Browse the repository at this point in the history
  • Loading branch information
YizhouFan committed Nov 17, 2024
1 parent dd84706 commit fb61b4b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/calculator.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import sys

from trader import Trader


Expand Down
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def convert_trade_history(trade_history: list, default_fee_rate: float = 0.001):
for row in tqdm(trade_history[1:]):
ts_str = row[0]
ts_datetime = parser.parse(ts_str)
total_price_jpy = abs(float(row[9].replace(",", "")))
total_price_jpy = abs(float(row[9].replace(",", "")))
fee_jpy = row[10]
if fee_jpy:
fee_jpy = float(fee_jpy.replace(",", ""))
Expand Down

0 comments on commit fb61b4b

Please sign in to comment.