Skip to content

Commit

Permalink
fix(plugins): imports
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Oct 8, 2024
1 parent 406f6a3 commit 042e489
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/pytest_plugins/execute/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@

from ethereum_test_base_types import Number
from ethereum_test_execution import EXECUTE_FORMATS, BaseExecute
from ethereum_test_forks import Fork, Frontier
from ethereum_test_forks import Fork
from ethereum_test_rpc import EthRPC
from ethereum_test_tools import SPEC_TYPES, BaseTest, TestInfo, Transaction
from ethereum_test_tools.code import Solc
from ethereum_test_types import TransactionDefaults
from pytest_plugins.spec_version_checker.spec_version_checker import EIPSpecTestItem

Expand Down
2 changes: 1 addition & 1 deletion src/pytest_plugins/filler/filler.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

from cli.gen_index import generate_fixtures_index
from ethereum_test_base_types import Alloc, ReferenceSpec
from ethereum_test_fixtures import FIXTURE_FORMATS, BaseFixture, FixtureCollector, TestInfo
from ethereum_test_fixtures import BaseFixture, FixtureCollector, TestInfo
from ethereum_test_forks import Fork
from ethereum_test_specs import SPEC_TYPES, BaseTest
from ethereum_test_tools.utility.versioning import (
Expand Down
6 changes: 3 additions & 3 deletions src/pytest_plugins/shared/execute_fill.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"""

import warnings
from typing import Dict, List, cast
from typing import List, cast

import pytest

from ethereum_test_execution import EXECUTE_FORMATS, ExecuteFormat
from ethereum_test_fixtures import FIXTURE_FORMATS, FixtureFormat
from ethereum_test_execution import EXECUTE_FORMATS
from ethereum_test_fixtures import FIXTURE_FORMATS
from ethereum_test_forks import (
Fork,
get_closest_fork_with_solc_support,
Expand Down

0 comments on commit 042e489

Please sign in to comment.