thingsboard-python-client-sdk
thingsboard-python-client-sdk copied to clipboard
Server attribute subscribe example error
The example in the readme says to use the callback as:
def on_attributes_change(client, result, exception):
But the callback doesn't bring the client information. I solved this by using:
def on_attributes_change(result, exception):
Me too. When are you update the example?