Skip to content

Commit e0434a4

Browse files
committed
Make flake8 happy
1 parent c0c0f10 commit e0434a4

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

eth/tools/fixtures/helpers.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,10 @@ def new_chain_from_fixture(fixture: Dict[str, Any],
198198
)
199199

200200

201-
def apply_fixture_block_to_chain(block_fixture: Dict[str, Any],
202-
chain: BaseChain,
203-
perform_validation: bool=True) -> Tuple[BaseBlock, BaseBlock, BaseBlock]:
201+
def apply_fixture_block_to_chain(
202+
block_fixture: Dict[str, Any],
203+
chain: BaseChain,
204+
perform_validation: bool=True) -> Tuple[BaseBlock, BaseBlock, BaseBlock]:
204205
'''
205206
:return: (premined_block, mined_block, rlp_encoded_mined_block)
206207
'''

tests/json-fixtures/test_blockchain.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ def test_blockchain_fixtures(fixture_data, fixture):
116116

117117
if should_be_good_block:
118118
(block, mined_block, block_rlp) = apply_fixture_block_to_chain(
119-
block_fixture,
120-
chain,
121-
perform_validation=False # we manually validate below
119+
block_fixture,
120+
chain,
121+
perform_validation=False # we manually validate below
122122
)
123123
mined_blocks.append((block, mined_block))
124124
else:

0 commit comments

Comments
 (0)