Skip to content

Commit

Permalink
Revert isort, manually sort
Browse files Browse the repository at this point in the history
  • Loading branch information
tcamise-gpsw committed Aug 15, 2023
1 parent 905309b commit b77fabd
Showing 1 changed file with 18 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,34 @@

"""Manage a Bluetooth connection using bleak."""

import sys
import asyncio
import logging
import platform
import sys
import threading
from typing import Any, Callable, Optional, Pattern
from typing import Pattern, Any, Callable, Optional

import pexpect
from bleak import BleakClient, BleakScanner
from bleak.backends.characteristic import BleakGATTCharacteristic
from packaging.version import Version
from bleak import BleakScanner, BleakClient
from bleak.backends.device import BLEDevice as BleakDevice
from bleak.backends.characteristic import BleakGATTCharacteristic
from bleak.backends.scanner import AdvertisementData
from packaging.version import Version

from open_gopro.ble import (BLEController, BleUUID, Characteristic, CharProps,
Descriptor, FailedToFindDevice, GattDB,
NotiHandlerType, Service, UUIDs)
from open_gopro.exceptions import ConnectFailed
from open_gopro.util import Singleton
from open_gopro.ble import (
Service,
Characteristic,
Descriptor,
GattDB,
BLEController,
NotiHandlerType,
FailedToFindDevice,
BleUUID,
UUIDs,
CharProps,
)
from open_gopro.exceptions import ConnectFailed

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit b77fabd

Please sign in to comment.