mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Disable pylint invalid name for TypeVar T (#34355)
This commit is contained in:
parent
591845ce23
commit
3aa2de5fa5
@ -10,7 +10,7 @@ from typing import Any, Callable, Coroutine, TypeVar
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
T = TypeVar("T")
|
||||
T = TypeVar("T") # pylint: disable=invalid-name
|
||||
|
||||
|
||||
def fire_coroutine_threadsafe(coro: Coroutine, loop: AbstractEventLoop) -> None:
|
||||
|
Loading…
x
Reference in New Issue
Block a user