Skip to content

Commit

Permalink
UPDATE ignore Korrekturbuchung remark in binance files
Browse files Browse the repository at this point in the history
  • Loading branch information
provinzio committed Dec 14, 2024
1 parent f5e1ded commit da9f5b2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/book.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,10 @@ def _read_binance(self, file_path: Path, version: int = 1) -> None:
) or remark.endswith(" to BNB"):
remark = None

# Do not warn for specific remarks
elif remark.startswith("Korrekturbuchung."):
pass

# Warn on other binance remarks, becuase all remarks should be some
# unnecessary default text which we'd like to ignore
else:
Expand Down

0 comments on commit da9f5b2

Please sign in to comment.