Skip to content

Commit

Permalink
Broke long line
Browse files Browse the repository at this point in the history
  • Loading branch information
eprbell committed Feb 18, 2024
1 parent 8e894aa commit 04c98ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dali/plugin/input/csv/trezor_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ def load(self, country: AbstractCountry) -> List[AbstractTransaction]:
self.__logger.warning("Possible dusting attack (fee > 0, total = 0), skipping transaction: %s", raw_data)
continue
if line[self.__AMOUNT_UNIT] in self._POSSIBLE_DUST_ATTACKERS:
self.__logger.warning("Possible dusting attack (amount unit %s is suspicious), skipping transaction: %s", line[self.__AMOUNT_UNIT], raw_data)
self.__logger.warning("Possible dusting attack (amount unit %s is suspicious), skipping transaction: %s",
line[self.__AMOUNT_UNIT], raw_data)
continue
if transaction_type in {_RECV, _SENT}:
result.append(
Expand Down

0 comments on commit 04c98ab

Please sign in to comment.