Skip to content

Commit 9e2e513

Browse files
committed
Black
1 parent 07d06f1 commit 9e2e513

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

slither/detectors/all_detectors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,6 @@
7979
from .operations.missing_zero_address_validation import MissingZeroAddressValidation
8080
from .functions.dead_code import DeadCode
8181
from .statements.write_after_write import WriteAfterWrite
82+
8283
#
8384
#

slither/detectors/statements/write_after_write.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def _remove_states(written: Dict[Variable, Node]):
2222
if isinstance(key, StateVariable):
2323
del written[key]
2424

25+
2526
def _handle_ir(
2627
ir: Operation,
2728
written: Dict[Variable, Node],

0 commit comments

Comments
 (0)