Skip to content

Commit

Permalink
Fix flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWilsn committed Jun 19, 2024
1 parent 5a2a2d9 commit f92d645
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion tests/prague/test_evm_tools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import importlib
from functools import partial
from typing import Dict

Expand Down
10 changes: 3 additions & 7 deletions tests/prague/test_state_transition.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
from functools import partial
from typing import Dict, Tuple
from typing import Dict

import pytest

from ethereum import rlp
from ethereum.base_types import U256, Bytes, Bytes8, Bytes32, Uint
from ethereum.crypto.hash import Hash32
from ethereum.exceptions import InvalidBlock, RLPDecodingError
from tests.helpers import TEST_FIXTURES
from tests.helpers.load_state_tests import (
Load,
Expand Down Expand Up @@ -106,7 +102,7 @@ def test_general_state_tests(test_case: Dict) -> None:


# Run execution-spec-generated-tests for EIP-7002
test_dir = f"tests/fixtures/latest_fork_tests/fixtures/blockchain_tests/prague/eip7002_el_triggerable_withdrawals"
test_dir = "tests/fixtures/latest_fork_tests/fixtures/blockchain_tests/prague/eip7002_el_triggerable_withdrawals"


@pytest.mark.parametrize(
Expand All @@ -119,7 +115,7 @@ def test_execution_specs_generated_tests_7002(test_case: Dict) -> None:


# Run execution-spec-generated-tests for EIP-6110
test_dir = f"tests/fixtures/latest_fork_tests/fixtures/blockchain_tests/prague/eip6110_deposits/deposits"
test_dir = "tests/fixtures/latest_fork_tests/fixtures/blockchain_tests/prague/eip6110_deposits/deposits"


@pytest.mark.parametrize(
Expand Down

0 comments on commit f92d645

Please sign in to comment.