Skip to content

Commit

Permalink
More lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kclowes committed Aug 26, 2020
1 parent 3ee4786 commit c88b036
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ethpm/_utils/deployments.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
Tuple,
)

from eth_typing import (
HexStr,
)
from eth_utils import (
is_same_address,
to_bytes,
Expand Down Expand Up @@ -47,7 +50,7 @@ def get_linked_deployments(deployments: Dict[str, Any]) -> Dict[str, Any]:


def validate_linked_references(
link_deps: Tuple[Tuple[int, bytes], ...], bytecode: HexBytes
link_deps: Tuple[Tuple[int, bytes], ...], bytecode: HexStr
) -> None:
"""
Validates that normalized linked_references (offset, expected_bytes)
Expand Down
2 changes: 1 addition & 1 deletion web3/_utils/module_testing/eth_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def test_eth_modifyTransaction(
def test_eth_sendRawTransaction(
self,
web3: "Web3",
raw_transaction: Union[HexStr, bytes],
raw_transaction: HexStr,
funded_account_for_raw_txn: ChecksumAddress,
expected_hash: HexStr,
) -> None:
Expand Down

0 comments on commit c88b036

Please sign in to comment.