Skip to content
Merged
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
3 changes: 1 addition & 2 deletions homeassistant/components/smarttub/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ def device_class(self) -> str:
"""Return the device class for this entity."""
return DEVICE_CLASS_PROBLEM

async def async_snooze(self, **kwargs):
async def async_snooze(self, days):
"""Snooze this reminder for the specified number of days."""
days = kwargs[ATTR_SNOOZE_DAYS]
await self.reminder.snooze(days)
await self.coordinator.async_request_refresh()