We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a77f75 commit f9208b6Copy full SHA for f9208b6
1 file changed
plugwise_usb/connection/__init__.py
@@ -74,8 +74,8 @@ def hardware_stick(self) -> str | None:
74
@property
75
def mac_stick(self) -> str:
76
"""MAC address of USB-Stick. Raises StickError when not connected."""
77
+ _LOGGER.debug("mac_stick: %s", self._mac_stick)
78
if self._mac_stick is None:
- _LOGGER.debug("mac_stick: %s", self._mac_stick)
79
raise StickError(
80
"No mac address available. Connect and initialize USB-Stick first."
81
)
0 commit comments