Refactor code with black

feature/regioned_storage
Nikhil 5 years ago
parent ebf6180fac
commit ff7d5577f0
  1. 4
      mythril/laser/ethereum/state/account.py

@ -176,7 +176,9 @@ class Storage:
# type ignored as it causes runtime performance overhead to cast() everywhere
return (
isinstance(key, BitVecFunc) is False
or (key.func_name == "keccak256" and len(key.nested_functions) <= 1) # type: ignore
or (
key.func_name == "keccak256" and len(key.nested_functions) <= 1
) # type: ignore
or key.symbolic is False
)

Loading…
Cancel
Save