Skip to content

Commit 431445e

Browse files
authored
fix imports (#25)
1 parent d7cc546 commit 431445e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bumble/l2cap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
import struct
2121

2222
from colors import color
23+
from pyee import EventEmitter
2324

2425
from .core import BT_CENTRAL_ROLE, InvalidStateError, ProtocolError
2526
from .hci import (HCI_LE_Connection_Update_Command, HCI_Object, key_with_value,
2627
name_or_number)
27-
from .utils import EventEmitter
2828

2929
# -----------------------------------------------------------------------------
3030
# Logging

bumble/rfcomm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
# -----------------------------------------------------------------------------
1818
import logging
1919
import asyncio
20+
2021
from colors import color
22+
from pyee import EventEmitter
2123

22-
from .utils import EventEmitter
2324
from .core import InvalidStateError, ProtocolError, ConnectionError
2425

2526
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)