Skip to content

Commit b8497b8

Browse files
author
Vaclav
committed
black
1 parent 1b38da4 commit b8497b8

File tree

1 file changed

+1
-3
lines changed
  • custom_components/garbage_collection

1 file changed

+1
-3
lines changed

custom_components/garbage_collection/sensor.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -524,9 +524,7 @@ async def _async_skip_holidays(self, date_candidate: date) -> date:
524524
date_candidate = self._skip_holiday(date_candidate)
525525
return date_candidate
526526

527-
def _insert_include_date(
528-
self, day1: date, next_date: Union[date, None]
529-
):
527+
def _insert_include_date(self, day1: date, next_date: Union[date, None]):
530528
"""Add include dates."""
531529
include_dates = list(filter(lambda date: date >= day1, self._include_dates))
532530
if len(include_dates) > 0 and (

0 commit comments

Comments
 (0)