mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-26 22:08:43 +01: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__)
|
||||
|
||||
T = TypeVar("T")
|
||||
T = TypeVar("T") # pylint: disable=invalid-name
|
||||
|
||||
|
||||
def fire_coroutine_threadsafe(coro: Coroutine, loop: AbstractEventLoop) -> None:
|
||||
|
||||
Reference in New Issue
Block a user