Skip to content

Commit

Permalink
skip infura plugin check during local development
Browse files Browse the repository at this point in the history
  • Loading branch information
KPrasch committed Sep 21, 2023
1 parent 442709a commit 0023a64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ def check_etherscan_plugin() -> None:

def check_infura_plugin() -> None:
"""Checks that the ape-infura plugin is installed."""
if CURRENT_NETWORK in LOCAL_BLOCKCHAIN_ENVIRONMENTS:
# unnecessary for local deployment
return

try:
import ape_infura # noqa: F401
except ImportError:
Expand Down

0 comments on commit 0023a64

Please sign in to comment.