Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchiavini committed Jan 31, 2024
1 parent a9c22d6 commit af7e934
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/deployment_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from os import environ, path

import boa
from boa.contracts.vyper.vyper_contract import VyperContract
from boa.network import NetworkEnv
from boa.vyper.contract import VyperContract
from eth_account import Account
from rich.console import Console as RichConsole

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/deployments.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import boa
import pytest
from boa.vyper.contract import VyperContract
from boa.contracts.vyper.vyper_contract import VyperContract

from scripts.deployment_utils import get_deployed_contract
from tests.utils import deploy_contract
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/functions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Callable

import pytest
from boa.vyper.contract import VyperContract
from boa.contracts.vyper.vyper_contract import VyperContract

from scripts.deployment_utils import get_deployed_contract

Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Union

import boa
from boa.vyper.contract import VyperContract
from boa.contracts.vyper.vyper_contract import VyperContract
from eth.codecs.abi.exceptions import DecodeError as ABIDecodeError
from eth_account.signers.local import LocalAccount

Expand Down

0 comments on commit af7e934

Please sign in to comment.