Skip to content

Commit 5aab14e

Browse files
committed
Lint cleanup
1 parent 86a0c5c commit 5aab14e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

eth/vm/forks/berlin/opcodes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import copy
2+
from typing import Dict
23

34
from eth_utils.toolz import merge
45

5-
66
from eth.vm.forks.muir_glacier.opcodes import (
77
MUIR_GLACIER_OPCODES,
88
)
9+
from eth.vm.opcode import Opcode
910

1011

11-
UPDATED_OPCODES = {
12+
UPDATED_OPCODES: Dict[int, Opcode] = {
1213
# New opcodes
1314
}
1415

eth/vm/forks/berlin/transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def create_unsigned_transaction(cls,
2727
class BerlinUnsignedTransaction(MuirGlacierUnsignedTransaction):
2828
def as_signed_transaction(self,
2929
private_key: PrivateKey,
30-
chain_id: int=None) -> BerlinTransaction:
30+
chain_id: int = None) -> BerlinTransaction:
3131
v, r, s = create_transaction_signature(self, private_key, chain_id=chain_id)
3232
return BerlinTransaction(
3333
nonce=self.nonce,

0 commit comments

Comments
 (0)