1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Import Generator from collections.abc (1) (#120914)

This commit is contained in:
Marc Mueller
2024-07-01 11:51:51 +02:00
committed by GitHub
parent aa5ebaf613
commit ca55986057
44 changed files with 62 additions and 76 deletions

View File

@@ -1,7 +1,7 @@
"""Test the bootstrapping."""
import asyncio
from collections.abc import Iterable
from collections.abc import Generator, Iterable
import contextlib
import glob
import logging
@@ -11,7 +11,6 @@ from typing import Any
from unittest.mock import AsyncMock, Mock, patch
import pytest
from typing_extensions import Generator
from homeassistant import bootstrap, loader, runner
import homeassistant.config as config_util