From 042e489b57316f3a1626f218138705b015181763 Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Tue, 8 Oct 2024 19:14:11 +0000 Subject: [PATCH] fix(plugins): imports --- src/pytest_plugins/execute/execute.py | 3 +-- src/pytest_plugins/filler/filler.py | 2 +- src/pytest_plugins/shared/execute_fill.py | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/pytest_plugins/execute/execute.py b/src/pytest_plugins/execute/execute.py index 185c6e194b..0d28baadd2 100644 --- a/src/pytest_plugins/execute/execute.py +++ b/src/pytest_plugins/execute/execute.py @@ -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 diff --git a/src/pytest_plugins/filler/filler.py b/src/pytest_plugins/filler/filler.py index f9bd115c04..2be06194d1 100644 --- a/src/pytest_plugins/filler/filler.py +++ b/src/pytest_plugins/filler/filler.py @@ -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 ( diff --git a/src/pytest_plugins/shared/execute_fill.py b/src/pytest_plugins/shared/execute_fill.py index e4d5b8d641..6db25af2bc 100644 --- a/src/pytest_plugins/shared/execute_fill.py +++ b/src/pytest_plugins/shared/execute_fill.py @@ -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,