Skip to content

Commit 9b28e82

Browse files
committed
Order imports properly
1 parent 62162db commit 9b28e82

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

trinity/protocol/bcc/servers.py

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
11
import functools
22
import itertools
3+
from typing import (
4+
cast,
5+
Any,
6+
Dict,
7+
Iterable,
8+
Set,
9+
Type,
10+
)
311

412
from cytoolz import (
513
cons,
614
sliding_window,
715
take,
816
)
17+
18+
from eth_typing import (
19+
Hash32,
20+
)
21+
922
from eth_utils import (
1023
to_tuple,
1124
)
@@ -27,18 +40,6 @@
2740
BCCPeerPool,
2841
)
2942

30-
from typing import (
31-
cast,
32-
Any,
33-
Dict,
34-
Iterable,
35-
Set,
36-
Type,
37-
)
38-
from eth_typing import (
39-
Hash32,
40-
)
41-
4243

4344
class BCCRequestServer(BaseRequestServer):
4445
subscription_msg_types: Set[Type[Command]] = {

0 commit comments

Comments
 (0)