Skip to content

Commit 22e3ad8

Browse files
committed
lints
1 parent cf908fa commit 22e3ad8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/benchmark/compute/instruction/test_storage.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"""
1010

1111
import math
12+
1213
import pytest
1314
from execution_testing import (
1415
Alloc,
@@ -356,7 +357,9 @@ def test_storage_access_warm(
356357
num_exec_txs = math.ceil(gas_benchmark_value / tx_max_gas_limit)
357358
txs = []
358359
for i in range(num_exec_txs):
359-
tx_gas_limit = min(tx_max_gas_limit, gas_benchmark_value - i * tx_max_gas_limit)
360+
tx_gas_limit = min(
361+
tx_max_gas_limit, gas_benchmark_value - i * tx_max_gas_limit
362+
)
360363
op_tx = Transaction(
361364
to=contract_address,
362365
gas_limit=tx_gas_limit,

0 commit comments

Comments
 (0)