Skip to content

Commit

Permalink
for pass Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
x authored and peplin committed Feb 20, 2021
1 parent 08407d4 commit 431aab5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pygatt/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ def unsubscribe(self, uuid, wait_for_response=True):
log.debug("Already unsubscribed from uuid=%s", uuid)

def subscribe_handle(self, handle, callback=None, indication=False,
wait_for_response=True):
wait_for_response=True):

"""
Like subscribe() but using handle instead of uuid.
Expand Down Expand Up @@ -306,7 +307,10 @@ def unsubscribe_handle(self, handle, wait_for_response=True):
)
log.info("Unsubscribed from handle=0x%04x", value_handle)
else:
log.debug("Already unsubscribed from handle=0x%04x", value_handle)
log.debug(
"Already unsubscribed from handle=0x%04x",
value_handle
)

def get_handle(self, char_uuid):
"""
Expand Down

0 comments on commit 431aab5

Please sign in to comment.