Skip to content

Commit

Permalink
chore: put back type ig
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Dec 14, 2023
1 parent 5a9f721 commit 7f0d594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ape/api/compiler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from functools import cached_property
from pathlib import Path
from typing import Dict, Iterator, List, Optional, Set, Tuple
from typing import Dict, Iterator, List, Optional, Sequence, Set, Tuple

from eth_pydantic_types import HexBytes
from ethpm_types import ContractType
Expand Down Expand Up @@ -122,7 +122,7 @@ def compile_code( # type: ignore[empty-body]

@raises_not_implemented
def get_imports( # type: ignore[empty-body]
self, contract_filepaths: List[Path], base_path: Optional[Path]
self, contract_filepaths: Sequence[Path], base_path: Optional[Path]
) -> Dict[str, List[str]]:
"""
Returns a list of imports as source_ids for each contract's source_id in a given
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_recover_signer(signer, message):


def test_sign_eip712_message(signer):
foo = Foo(signer.address)
foo = Foo(signer.address) # type: ignore[call-arg]
message = foo.signable_message
signature = signer.sign_message(message)
assert signer.check_signature(message, signature)
Expand Down

0 comments on commit 7f0d594

Please sign in to comment.