Skip to content

Commit

Permalink
Improve proxmoxve generic typing (#90948)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Apr 7, 2023
1 parent 9793cae commit 823eb23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion homeassistant/components/proxmoxve/__init__.py
Expand Up @@ -134,7 +134,9 @@ def build_client() -> ProxmoxAPI:

await hass.async_add_executor_job(build_client)

coordinators: dict[str, dict[str, dict[int, DataUpdateCoordinator]]] = {}
coordinators: dict[
str, dict[str, dict[int, DataUpdateCoordinator[dict[str, Any] | None]]]
] = {}
hass.data[DOMAIN][COORDINATORS] = coordinators

# Create a coordinator for each vm/container
Expand Down

0 comments on commit 823eb23

Please sign in to comment.