Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
petertdavies committed Dec 6, 2024
1 parent 5ab9df4 commit d212a25
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,6 @@ def to_json(self) -> Any:
data["requestsHash"] = encode_to_hex(self.requests_hash)
# T8N doesn't consider the request type byte to be part of the
# request
data["requests"] = [
encode_to_hex(req) for req in self.requests
]
data["requests"] = [encode_to_hex(req) for req in self.requests]

return data

0 comments on commit d212a25

Please sign in to comment.