Skip to content

Commit 8570539

Browse files
committed
lints
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent 538f536 commit 8570539

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/zkevm/test_worst_compute.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
import pytest
1111

1212
from ethereum_test_forks import Fork
13-
from ethereum_test_tools import (Alloc, Block, BlockchainTestFiller,
14-
Environment, Transaction)
13+
from ethereum_test_tools import Alloc, Block, BlockchainTestFiller, Environment, Transaction
1514
from ethereum_test_tools.vm.opcode import Opcodes as Op
1615

1716
REFERENCE_SPEC_GIT_PATH = "TODO"
@@ -120,7 +119,6 @@ def test_worst_modexp(
120119
pre: Alloc,
121120
fork: Fork,
122121
gas_limit: int,
123-
124122
):
125123
"""Test running a block with as many MODEXP calls as possible."""
126124
env = Environment(gas_limit=gas_limit)
@@ -129,7 +127,7 @@ def test_worst_modexp(
129127
exp_length = 32
130128

131129
base = 2 ** (8 * base_mod_length) - 1
132-
mod = 2 ** (8 * base_mod_length) - 2 # Prevnts base == mod
130+
mod = 2 ** (8 * base_mod_length) - 2 # Prevnts base == mod
133131
exp = 2 ** (8 * exp_length) - 1
134132

135133
# MODEXP calldata

0 commit comments

Comments
 (0)