Skip to content

Commit 81cf548

Browse files
committed
more ruff fixes
Signed-off-by: Danno Ferrin <[email protected]>
1 parent 2244ead commit 81cf548

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

osaka/eip7692_eof_v1/eip7620_eof_create/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
value_code_worked = 0x2015
2626
value_canary_should_not_change = 0x2019
2727
value_canary_to_be_overwritten = 0x2009
28-
value_long_value = b'abcdefghijklmnopqrstuvwxyz123456'
28+
value_long_value = b"abcdefghijklmnopqrstuvwxyz123456"
2929

3030
smallest_runtime_subcontainer = Container.Code(code=Op.STOP, name="Runtime Subcontainer")
3131

osaka/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
slot_calldata,
2525
slot_code_worked,
2626
slot_create_address,
27+
slot_data_load,
2728
slot_last_slot,
2829
slot_returndata_size,
2930
smallest_initcode_subcontainer,
3031
smallest_runtime_subcontainer,
3132
value_canary_to_be_overwritten,
3233
value_code_worked,
33-
slot_data_load,
3434
value_long_value,
3535
)
3636
from .spec import EOFCREATE_FAILURE
@@ -99,9 +99,9 @@ def test_eofcreate_then_dataload(
9999
+ Op.STOP,
100100
),
101101
Section.Container(
102-
container= small_auxdata_container,
102+
container=small_auxdata_container,
103103
),
104-
Section.Data(data=value_long_value)
104+
Section.Data(data=value_long_value),
105105
],
106106
),
107107
storage={slot_data_load: value_canary_to_be_overwritten},

0 commit comments

Comments
 (0)