Revert "Fix coordinator TypeVar definition (#81298)" (#81834)

This commit is contained in:
epenet 2022-11-09 09:03:59 +01:00 committed by GitHub
parent ad992f0a86
commit 9f691ab359
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ REQUEST_REFRESH_DEFAULT_IMMEDIATE = True
_T = TypeVar("_T")
_DataUpdateCoordinatorT = TypeVar(
"_DataUpdateCoordinatorT", bound="DataUpdateCoordinator"
"_DataUpdateCoordinatorT", bound="DataUpdateCoordinator[Any]"
)