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 1b38da4 commit b8497b8Copy full SHA for b8497b8
custom_components/garbage_collection/sensor.py
@@ -524,9 +524,7 @@ async def _async_skip_holidays(self, date_candidate: date) -> date:
524
date_candidate = self._skip_holiday(date_candidate)
525
return date_candidate
526
527
- def _insert_include_date(
528
- self, day1: date, next_date: Union[date, None]
529
- ):
+ def _insert_include_date(self, day1: date, next_date: Union[date, None]):
530
"""Add include dates."""
531
include_dates = list(filter(lambda date: date >= day1, self._include_dates))
532
if len(include_dates) > 0 and (
0 commit comments