Clean up unused loggers (#57662)

This commit is contained in:
Robert Hillis
2021-10-14 13:03:38 -04:00
committed by GitHub
parent fdc6d9e004
commit 488a636aec
88 changed files with 0 additions and 292 deletions

View File

@@ -5,7 +5,6 @@ import asyncio
from collections.abc import Callable, Coroutine, Iterable
from contextvars import ContextVar
from datetime import datetime, timedelta
import logging
from logging import Logger
from types import ModuleType
from typing import TYPE_CHECKING, Any, Protocol
@@ -59,8 +58,6 @@ PLATFORM_NOT_READY_RETRIES = 10
DATA_ENTITY_PLATFORM = "entity_platform"
PLATFORM_NOT_READY_BASE_WAIT_TIME = 30 # seconds
_LOGGER = logging.getLogger(__name__)
class AddEntitiesCallback(Protocol):
"""Protocol type for EntityPlatform.add_entities callback."""