Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
bout3fiddy committed Feb 19, 2024
1 parent d243a53 commit 7e563c4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -484,4 +484,4 @@ def pool_list(_index: uint256) -> address:
@param _index Index of the pool
@return Address of the pool
"""
return self.base_registry.pool_list(_index)
return self.base_registry.pool_list(_index)
2 changes: 1 addition & 1 deletion tests/mainnet/metaregistry/api/test_get_admin_balances.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from boa import BoaError
from eth.codecs.abi.exceptions import DecodeError as ABIDecodeError

from scripts.deployment_utils import get_deployed_contract
from scripts.utils import get_deployed_contract
from tests.utils import assert_decode_error, assert_negative_coin_balance


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest
from boa import BoaError

from scripts.deployment_utils import get_deployed_contract
from scripts.utils import get_deployed_contract
from scripts.utils.constants import ZERO_ADDRESS
from tests.utils import assert_negative_coin_balance

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
from boa import BoaError

from scripts.deployment_utils import get_deployed_contract
from scripts.utils import get_deployed_contract
from scripts.utils.constants import ZERO_ADDRESS

EXCEPTIONS = {
Expand Down
2 changes: 1 addition & 1 deletion tests/mainnet/metaregistry/api/test_get_virtual_price.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from boa import BoaError
from eth.codecs.abi.exceptions import DecodeError as ABIDecodeError

from scripts.deployment_utils import get_deployed_contract
from scripts.utils import get_deployed_contract
from scripts.utils.constants import ZERO_ADDRESS
from tests.utils import assert_decode_error, assert_negative_coin_balance

Expand Down

0 comments on commit 7e563c4

Please sign in to comment.