Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
montyly committed Apr 30, 2021
1 parent 07d06f1 commit 9e2e513
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions slither/detectors/all_detectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,6 @@
from .operations.missing_zero_address_validation import MissingZeroAddressValidation
from .functions.dead_code import DeadCode
from .statements.write_after_write import WriteAfterWrite

#
#
1 change: 1 addition & 0 deletions slither/detectors/statements/write_after_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def _remove_states(written: Dict[Variable, Node]):
if isinstance(key, StateVariable):
del written[key]


def _handle_ir(
ir: Operation,
written: Dict[Variable, Node],
Expand Down

0 comments on commit 9e2e513

Please sign in to comment.