Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/bond/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .utils import BondDevice

# The api requires a step size even though it does not
# seem to matter what is is as the underlying device is likely
# seem to matter what is as the underlying device is likely
# getting an increase/decrease signal only
STEP_SIZE = 10

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/flux_led/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,5 @@ async def async_turn_off(self, **kwargs: Any) -> None:

@property
def is_on(self) -> bool:
"""Return true if microphone is is on."""
"""Return true if microphone is on."""
return self._device.is_on and self._device.effect == MODE_MUSIC
2 changes: 1 addition & 1 deletion homeassistant/components/tod/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def _add_one_dst_aware_day(self, a_date: datetime, target_time: time) -> datetim
)

def _turn_to_next_day(self) -> None:
"""Turn to to the next day."""
"""Turn to the next day."""
if _is_sun_event(self._after):
self._time_after = get_astral_event_next(
self.hass, self._after, self._time_after - self._after_offset
Expand Down
Loading