Skip to content

Commit 1994778

Browse files
committed
Fix mypy
1 parent b7d8ba4 commit 1994778

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reward_token.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from typing import List, Set
44

55
from eth_typing.bls import BLSPubkey
6-
from grpc._channel import _InactiveRpcError
6+
from grpc._channel import _InactiveRpcError # type: ignore
77
from loguru import logger
88
from requests import HTTPError
99
from web3 import Web3
@@ -152,7 +152,7 @@ def process(self) -> None:
152152
)
153153
time.sleep(5)
154154
else:
155-
public_keys: Set[BLSPubkey] = get_pool_validator_public_keys(self.pool)
155+
public_keys = get_pool_validator_public_keys(self.pool)
156156

157157
inactive_public_keys: Set[BLSPubkey] = set()
158158

0 commit comments

Comments
 (0)