Skip to content

Commit

Permalink
sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
paouvrard committed Jan 8, 2019
1 parent 7999d72 commit 9438b84
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
18 changes: 10 additions & 8 deletions tests/core/utilities/test_proof.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
import pytest

import rlp
from web3.datastructures import (
AttributeDict,

from eth_utils import (
keccak,
)
from hexbytes import (
HexBytes,
)
from web3._utils.proof import (
verify_eth_getProof,
_verify,
)
from web3._utils.encoding import (
pad_bytes,
)
from eth_utils import (
keccak,
from web3._utils.proof import (
_verify,
verify_eth_getProof,
)
from web3.datastructures import (
AttributeDict,
)

# accountProof
Expand Down
7 changes: 4 additions & 3 deletions web3/_utils/proof.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
Binary,
big_endian_int,
)

from eth_utils import (
keccak,
)
from web3._utils.encoding import (
pad_bytes,
pad_hex,
)
from eth_utils import (
keccak,
)


def storage_position(map_key_hex, position_hex):
Expand Down

0 comments on commit 9438b84

Please sign in to comment.