Skip to content

Commit d8d2965

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

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"
@@ -119,7 +118,6 @@ def test_worst_modexp(
119118
pre: Alloc,
120119
fork: Fork,
121120
gas_limit: int,
122-
123121
):
124122
"""Test running a block with as many MODEXP calls as possible."""
125123
env = Environment(gas_limit=gas_limit)
@@ -128,7 +126,7 @@ def test_worst_modexp(
128126
exp_length = 32
129127

130128
base = 2 ** (8 * base_mod_length) - 1
131-
mod = 2 ** (8 * base_mod_length) - 2 # Prevnts base == mod
129+
mod = 2 ** (8 * base_mod_length) - 2 # Prevnts base == mod
132130
exp = 2 ** (8 * exp_length) - 1
133131

134132
# MODEXP calldata

0 commit comments

Comments
 (0)