style: isort fix ording of imports

This commit is contained in:
Luca Vivona
2025-06-20 16:01:11 -04:00
parent d03ca45bd8
commit 811c217ee6
6 changed files with 30 additions and 33 deletions

View File

@ -22,17 +22,16 @@ from libp2p.peer.peerinfo import (
PeerInfo,
)
from .common import (
ALPHA,
PROTOCOL_ID,
)
from .pb.kademlia_pb2 import (
Message,
)
from .routing_table import (
RoutingTable,
)
from .common import (
PROTOCOL_ID,
ALPHA
)
from .utils import (
sort_peer_ids_by_distance,
)