diff --git a/custom_components/toyota/__init__.py b/custom_components/toyota/__init__.py index 9b7845c..27de1d7 100644 --- a/custom_components/toyota/__init__.py +++ b/custom_components/toyota/__init__.py @@ -40,7 +40,7 @@ UPDATE_INTERVAL = timedelta(minutes=10) -async def with_timeout(task, timeout_seconds=15): +async def with_timeout(task, timeout_seconds=25): """Run an async task with a timeout.""" async with async_timeout.timeout(timeout_seconds): return await task