Fixed formatting (again).
CI / Formatting (push) Successful in 6s
CI / Linting (push) Successful in 5s
CI / Tests (push) Successful in 27s
CI / Type Checking (push) Successful in 8s
CI / Spelling (push) Successful in 5s

This commit is contained in:
2026-05-17 15:12:57 -04:00
parent ec42266af3
commit 48a4fb9bbf
+1 -3
View File
@@ -119,9 +119,7 @@ class OwncastSentry(Plugin):
"""Run stream state updates at the top of each wall-clock minute."""
while True:
current_time = datetime.now(UTC)
delay = 60 - current_time.second - (
current_time.microsecond / 1_000_000
)
delay = 60 - current_time.second - (current_time.microsecond / 1_000_000)
await asyncio.sleep(delay)
await self._update_all_stream_states()