Skip to content

Commit

Permalink
fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
denysdovhan committed Jul 11, 2024
1 parent 6291cef commit 5d4beec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/yasno_outages/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def next_possible_outage(self) -> datetime.datetime | None:
return None

@property
def next_connectivity(self) -> CalendarEvent | None:
def next_connectivity(self) -> datetime.datetime | None:
"""Get next connectivity time."""
now = dt_utils.now()
current_event = self.get_event_at(now)
Expand Down

0 comments on commit 5d4beec

Please sign in to comment.