mirror of
https://github.com/home-assistant/core.git
synced 2025-08-04 05:05:09 +02:00
Disable pylint invalid name for TypeVar T (#34355)
This commit is contained in:
@@ -10,7 +10,7 @@ from typing import Any, Callable, Coroutine, TypeVar
|
|||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
T = TypeVar("T")
|
T = TypeVar("T") # pylint: disable=invalid-name
|
||||||
|
|
||||||
|
|
||||||
def fire_coroutine_threadsafe(coro: Coroutine, loop: AbstractEventLoop) -> None:
|
def fire_coroutine_threadsafe(coro: Coroutine, loop: AbstractEventLoop) -> None:
|
||||||
|
Reference in New Issue
Block a user