Skip to content

Commit 2dab80d

Browse files
fix: resolve linting issue
1 parent 2e8ee6a commit 2dab80d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/ethereum_test_specs/blockchain.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,10 @@ def verify_post_state(self, t8n, t8n_state: Alloc, expected_state: Alloc | None
715715
raise e
716716

717717
def _get_test_phase_blocks(self) -> List[Block]:
718-
"""Get additional blocks from benchmark manager setup and execution phases."""
718+
"""
719+
Get additional blocks from phase manager for setup
720+
and execution phases.
721+
"""
719722
assert self.test_phase_manager is not None, "Test phase manager is not set"
720723

721724
blocks = []

src/ethereum_test_types/phase_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ class TestPhase(Enum):
2121
class TestPhaseManager:
2222
"""
2323
Manages test phases and collects transactions and blocks by phase.
24-
This class provides a mechanism for tracking "setup" and "execution" phases,
24+
This class provides a mechanism for "setup" and "execution" phases,
2525
Only supports "setup" and "execution" phases now.
2626
"""
2727

2828
def __init__(self, *args, **kwargs):
29-
"""Initialize the TestPhaseManager with empty transaction and block lists."""
29+
"""Initialize TestPhaseManager with empty transactions and blocks."""
3030
self.setup_transactions: List = []
3131
self.setup_blocks: List = []
3232
self.execution_transactions: List = []

0 commit comments

Comments
 (0)