use isort when formatting

This commit is contained in:
Gilles Boccon-Gibod
2025-08-21 14:21:19 -07:00
parent ceefe8b2a5
commit 7aba36302a
198 changed files with 1129 additions and 1321 deletions

View File

@@ -16,28 +16,27 @@
# Imports
# -----------------------------------------------------------------------------
import logging
import grpc.aio
from typing import Optional, Union
import grpc.aio
from bumble.transport.common import (
PumpedTransport,
PumpedPacketSource,
PumpedPacketSink,
PumpedPacketSource,
PumpedTransport,
Transport,
TransportSpecError,
)
# pylint: disable=no-name-in-module
from bumble.transport.grpc_protobuf.emulated_bluetooth_packets_pb2 import HCIPacket
from bumble.transport.grpc_protobuf.emulated_bluetooth_pb2_grpc import (
EmulatedBluetoothServiceStub,
)
from bumble.transport.grpc_protobuf.emulated_bluetooth_packets_pb2 import HCIPacket
from bumble.transport.grpc_protobuf.emulated_bluetooth_vhci_pb2_grpc import (
VhciForwardingServiceStub,
)
# -----------------------------------------------------------------------------
# Logging
# -----------------------------------------------------------------------------