From 9597fe50c99c5134771ca0fb30bcd7fd4da66a75 Mon Sep 17 00:00:00 2001 From: Nikhil Date: Tue, 9 Jul 2019 19:56:53 +0530 Subject: [PATCH] Refactor with black --- .../laser/ethereum/plugins/implementations/dependency_pruner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/laser/ethereum/plugins/implementations/dependency_pruner.py b/mythril/laser/ethereum/plugins/implementations/dependency_pruner.py index d4cda298..0214ff4c 100644 --- a/mythril/laser/ethereum/plugins/implementations/dependency_pruner.py +++ b/mythril/laser/ethereum/plugins/implementations/dependency_pruner.py @@ -142,7 +142,7 @@ class DependencyPruner(LaserPlugin): self.iteration = 0 self.dependency_map = {} # type: Dict[int, List[object]] self.protected_addresses = set() # type: Set[int] - self.loop_address = set() # type: Set[int] + self.loop_address = set() # type: Set[int] def update_dependency_map(self, path: List[int], target_location: object) -> None: """Update the dependency map for the block offsets on the given path.