You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following error when I try to run the project. Any solution for this issue?
Traceback (most recent call last):
File "peripheral.py", line 25, in
pizzaService = PizzaService(Pizza())
File "/home/pi/pybleno/examples/pizza/PizzaService.py", line 11, in init
PizzaCrustCharacteristic(pizza),
File "/home/pi/pybleno/examples/pizza/PizzaCrustCharacteristic.py", line 18, in init
value = 'Gets or sets the type of pizza crust.'
TypeError: init() got an unexpected keyword argument 'uuid'
The text was updated successfully, but these errors were encountered:
Found the solution. You just need to fix the string detection in the Descriptor.py.
From this: if options['value'] is str:
to this: if isinstance(options['value'], str):
Found the solution. You just need to fix the string detection in the Descriptor.py. From this: if options['value'] is str: to this: if isinstance(options['value'], str):
No it is already edited but still has the same error
I get the following error when I try to run the project. Any solution for this issue?
Traceback (most recent call last):
File "peripheral.py", line 25, in
pizzaService = PizzaService(Pizza())
File "/home/pi/pybleno/examples/pizza/PizzaService.py", line 11, in init
PizzaCrustCharacteristic(pizza),
File "/home/pi/pybleno/examples/pizza/PizzaCrustCharacteristic.py", line 18, in init
value = 'Gets or sets the type of pizza crust.'
TypeError: init() got an unexpected keyword argument 'uuid'
The text was updated successfully, but these errors were encountered: