Skip to content

Commit d212a25

Browse files
committed
Fix lints
1 parent 5ab9df4 commit d212a25

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,6 @@ def to_json(self) -> Any:
356356
data["requestsHash"] = encode_to_hex(self.requests_hash)
357357
# T8N doesn't consider the request type byte to be part of the
358358
# request
359-
data["requests"] = [
360-
encode_to_hex(req) for req in self.requests
361-
]
359+
data["requests"] = [encode_to_hex(req) for req in self.requests]
362360

363361
return data

0 commit comments

Comments
 (0)