Skip to content

Commit 1ebea53

Browse files
committed
make pylint happy with import order
1 parent ba2d6c9 commit 1ebea53

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

meshtastic/ble_interface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
import struct
66
import asyncio
77
from threading import Thread, Event
8-
from bleak import BleakScanner, BleakClient
9-
108
from typing import Optional
119

10+
from bleak import BleakScanner, BleakClient
11+
1212
from meshtastic.mesh_interface import MeshInterface
1313
from meshtastic.util import our_exit
1414

meshtastic/serial_interface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
import platform
55
import time
66

7-
import serial # type: ignore[import-untyped]
8-
97
from typing import Optional
108

9+
import serial # type: ignore[import-untyped]
10+
1111
import meshtastic.util
1212
from meshtastic.stream_interface import StreamInterface
1313

0 commit comments

Comments
 (0)