Skip to content

Commit

Permalink
chore: fix ruff error
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlb committed Jan 26, 2024
1 parent 3921fd5 commit 00b77e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/ha_carrier/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class HumidifierSensor(CarrierEntity, BinarySensorEntity):
def __init__(self, updater):
"""Create identifiers."""
self._updater = updater
super().__init__(f"Humidifier Running", updater)
super().__init__("Humidifier Running", updater)

@property
def is_on(self) -> bool | None:
Expand Down

0 comments on commit 00b77e5

Please sign in to comment.