adafruit / Adafruit_CircuitPython_BluefruitConnect

This module helps you to communicate with the Adafruit Bluefruit Connect app or use its protocols
MIT License
17 stars 16 forks source link

Fix failure in from_stream method #28

Closed lcongdon closed 3 years ago

lcongdon commented 3 years ago

from_stream method of the Packet class fails when getting the packet_class from the _type_to_class dictionary because header is a bytearray and not hashable. This change makes header hashable and corrects the error.