We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd082fe commit 32b96e1Copy full SHA for 32b96e1
1 file changed
pyhilo/device/sensor.py
@@ -10,7 +10,7 @@
10
class Sensor(HiloDevice):
11
def __init__(self, api: API, **kwargs: dict[str, Union[str, int]]):
12
super().__init__(api, **kwargs) # type: ignore
13
- LOG.debug(f"Setting up Sensor device: {self.name}")
+ LOG.debug("Setting up Sensor device: %s", self.name)
14
15
@property
16
def state(self) -> str:
0 commit comments