Make TypeVars private (3) (#68207)

This commit is contained in:
Marc Mueller
2022-03-17 19:11:14 +01:00
committed by GitHub
parent eae0c75620
commit 8f69d31322
8 changed files with 26 additions and 26 deletions

View File

@@ -24,8 +24,8 @@ CONFIG_ENTRY_DATA = {"server_url": SERVER_URL}
# Typing helpers
ComponentSetup = Callable[[], Awaitable[None]]
T = TypeVar("T")
YieldFixture = Generator[T, None, None]
_T = TypeVar("_T")
YieldFixture = Generator[_T, None, None]
@pytest.fixture(autouse=True)