Skip to content

Commit 3166d75

Browse files
committed
chore: lint
1 parent 527b211 commit 3166d75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

evm_trace/vmtrace.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
from eth.vm.stack import Stack # type: ignore
77
from eth_utils import to_checksum_address
88
from hexbytes import HexBytes
9+
910
try:
1011
from msgspec import Struct # type: ignore
1112
from msgspec.json import Decoder # type: ignore
1213
except ImportError as e:
13-
raise ImportError('msgspec not found. install it with `pip install msgspec`') from e
14+
raise ImportError("msgspec not found. install it with `pip install msgspec`") from e
1415

1516
# opcodes grouped by the number of items they pop from the stack
1617
# fmt: off

0 commit comments

Comments
 (0)