Skip to content

Commit

Permalink
Fix flake8 violation
Browse files Browse the repository at this point in the history
  • Loading branch information
CatalinGB authored Jan 6, 2024
1 parent 23842e8 commit 5a6893b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tariochbctools/importers/ibkr/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def matches(self, trx, t, account):
trxPerShareGroups = p.search(trx.description)
tPerShareGroups = p.search(t["description"])

trxPerShare = trxPerShareGroups.group("perShare") if trxPerShareGroups else ''
tPerShare = tPerShareGroups.group("perShare") if tPerShareGroups else ''
trxPerShare = trxPerShareGroups.group("perShare") if trxPerShareGroups else ""
tPerShare = tPerShareGroups.group("perShare") if tPerShareGroups else ""

return (
t["date"] == trx.dateTime
Expand Down

0 comments on commit 5a6893b

Please sign in to comment.