Adam-Langley / pybleno

A direct port of the Bleno bluetooth LE peripheral role library to Python2/3
MIT License
68 stars 34 forks source link

Usage of null instead of None #23

Closed vinitatgithub closed 5 years ago

vinitatgithub commented 5 years ago

In Characteristic.py -> onUnsubscribe method, the values are being set to "null", which causes a crash as null is not defined in python. It should be replaced by "None".

@Adam-Langley I have submitted a pull request as well with the fix.

Adam-Langley commented 5 years ago

Hi @vinitatgithub - please create a pull request for your change, then I can review and commit your change - and it will be attributed to you. There are no permission controls preventing you from doing this.

Let me know how this goes.

vinitatgithub commented 5 years ago

Created one and sent it over. Thank you for the quick reply.