We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62162db commit 9b28e82Copy full SHA for 9b28e82
trinity/protocol/bcc/servers.py
@@ -1,11 +1,24 @@
1
import functools
2
import itertools
3
+from typing import (
4
+ cast,
5
+ Any,
6
+ Dict,
7
+ Iterable,
8
+ Set,
9
+ Type,
10
+)
11
12
from cytoolz import (
13
cons,
14
sliding_window,
15
take,
16
)
17
+
18
+from eth_typing import (
19
+ Hash32,
20
21
22
from eth_utils import (
23
to_tuple,
24
@@ -27,18 +40,6 @@
27
40
BCCPeerPool,
28
41
29
42
30
-from typing import (
31
- cast,
32
- Any,
33
- Dict,
34
- Iterable,
35
- Set,
36
- Type,
37
-)
38
-from eth_typing import (
39
- Hash32,
-
43
44
class BCCRequestServer(BaseRequestServer):
45
subscription_msg_types: Set[Type[Command]] = {
0 commit comments