From 13fe4cda818264381408a7f6c90bc01e8e867fea Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Tue, 8 Oct 2024 08:05:54 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: danceratopz --- src/ethereum_test_forks/forks/forks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ethereum_test_forks/forks/forks.py b/src/ethereum_test_forks/forks/forks.py index 224d07cc051..8a4fb6486e0 100644 --- a/src/ethereum_test_forks/forks/forks.py +++ b/src/ethereum_test_forks/forks/forks.py @@ -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] @@ -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 )