Skip to content

Commit

Permalink
fix imports (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
barbibulle committed Aug 16, 2022
1 parent d7cc546 commit 431445e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bumble/l2cap.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
import struct

from colors import color
from pyee import EventEmitter

from .core import BT_CENTRAL_ROLE, InvalidStateError, ProtocolError
from .hci import (HCI_LE_Connection_Update_Command, HCI_Object, key_with_value,
name_or_number)
from .utils import EventEmitter

# -----------------------------------------------------------------------------
# Logging
Expand Down
3 changes: 2 additions & 1 deletion bumble/rfcomm.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@
# -----------------------------------------------------------------------------
import logging
import asyncio

from colors import color
from pyee import EventEmitter

from .utils import EventEmitter
from .core import InvalidStateError, ProtocolError, ConnectionError

# -----------------------------------------------------------------------------
Expand Down

0 comments on commit 431445e

Please sign in to comment.