Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: danceratopz <[email protected]>
  • Loading branch information
marioevz and danceratopz committed Oct 8, 2024
1 parent c128bcd commit 13fe4cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ethereum_test_forks/forks/forks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ def evm_code_types(cls, block_number: int = 0, timestamp: int = 0) -> List[EVMCo
"""
EOF V1 is supported starting from Osaka.
"""
return super(Osaka, cls,).evm_code_types( # noqa: SC200
return super(Osaka, cls,).evm_code_types(
block_number,
timestamp,
) + [EVMCodeType.EOF_V1]
Expand All @@ -1027,7 +1027,7 @@ def call_opcodes(
(Opcodes.EXTSTATICCALL, EVMCodeType.EOF_V1),
(Opcodes.EXTDELEGATECALL, EVMCodeType.EOF_V1),
] + super(
Osaka, cls # noqa: SC200
Osaka, cls
).call_opcodes(
block_number, timestamp
)
Expand Down

0 comments on commit 13fe4cd

Please sign in to comment.