We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5e2c82 commit ca82818Copy full SHA for ca82818
switchbot/__init__.py
@@ -16,7 +16,7 @@
16
17
18
class Switchbot:
19
- """Representation of a Switchmate."""
+ """Representation of a Switchbot."""
20
21
def __init__(self, mac) -> None:
22
self._mac = mac
@@ -35,7 +35,7 @@ def _connect(self) -> bool:
35
self._device = bluepy.btle.Peripheral(self._mac,
36
bluepy.btle.ADDR_TYPE_RANDOM)
37
except bluepy.btle.BTLEException:
38
- _LOGGER.error("Failed to connect to switchmate", exc_info=True)
+ _LOGGER.error("Failed to connect to Switchbot", exc_info=True)
39
return False
40
return True
41
0 commit comments