Skip to content

Commit

Permalink
silence type error
Browse files Browse the repository at this point in the history
  • Loading branch information
z80dev committed Sep 20, 2023
1 parent dc88b37 commit 8435d41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ape/api/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1811,7 +1811,7 @@ def _try_timeout():

def range_contract_events(
self,
contract: "ContractInstance",
contract: "ContractInstance", # noqa: F821
start_or_stop: int,
stop: Optional[int] = None,
search_topics: Optional[Dict[str, Any]] = None,
Expand Down Expand Up @@ -1876,7 +1876,7 @@ def range_contract_events(

def poll_logs(
self,
contract: "ContractTypeWrapper",
contract: "ContractTypeWrapper", # noqa: F821
stop_block: Optional[int] = None,
required_confirmations: Optional[int] = None,
new_block_timeout: Optional[int] = None,
Expand Down

0 comments on commit 8435d41

Please sign in to comment.