Apply black

pull/632/head
Dominik Muhs 6 years ago
parent 524c10a8c8
commit e2408a043c
  1. 1
      mythril/laser/ethereum/keccak.py
  2. 1
      mythril/laser/ethereum/taint_analysis.py
  3. 8
      mythril/laser/ethereum/transaction/transaction_models.py

@ -1,7 +1,6 @@
from z3 import ExprRef, BitVecRef
class KeccakFunctionManager:
def __init__(self):
self.keccak_expression_mapping = {}

@ -8,7 +8,6 @@ from mythril.laser.ethereum.state import GlobalState, Environment
from mythril.analysis.symbolic import SymExecWrapper
class TaintRecord:
"""
TaintRecord contains tainting information for a specific (state, node)

@ -1,7 +1,13 @@
import logging
from typing import Union
from mythril.disassembler.disassembly import Disassembly
from mythril.laser.ethereum.state import GlobalState, Environment, WorldState, Account, Calldata
from mythril.laser.ethereum.state import (
GlobalState,
Environment,
WorldState,
Account,
Calldata,
)
from z3 import BitVec, BitVecNumRef
import array

Loading…
Cancel
Save