Skip to content

Commit

Permalink
Fixing property access
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Mar 27, 2022
1 parent ebe77f4 commit 4704fb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fastybird_fb_bus_connector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from .bootstrap import create_connector

__version__ = "0.24.0"
__version__ = "0.24.1"

__all__ = ["connector", "bootstrap"]

Expand Down
4 changes: 2 additions & 2 deletions fastybird_fb_bus_connector/events/listeners.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ def __write_device_property_value(self, register: AttributeRegisterRecord) -> No
"Creating new device property state",
extra={
"device": {
"id": device_property.device.device.id.__str__(),
"id": device_property.device.id.__str__(),
},
"property": {
"id": device_property.id.__str__(),
Expand Down Expand Up @@ -631,7 +631,7 @@ def __write_device_property_value(self, register: AttributeRegisterRecord) -> No
"Updating existing device property state",
extra={
"device": {
"id": device_property.device.device.id.__str__(),
"id": device_property.device.id.__str__(),
},
"property": {
"id": device_property.id.__str__(),
Expand Down

0 comments on commit 4704fb1

Please sign in to comment.