Skip to content

Commit

Permalink
Don't use Python3 type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
peplin committed Mar 30, 2019
1 parent 477f365 commit 2cab0a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/subscribe_indicate_thermometer_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import pygatt


def data_handler_cb(handle: int, value: bytearray):
def data_handler_cb(handle, value):
"""
Indication and notification come asynchronously, we use this function to
handle them either one at the time as they come.
Expand Down

0 comments on commit 2cab0a2

Please sign in to comment.