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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
88 changed files with 0 additions and 292 deletions

View file

@ -1,7 +1,6 @@
"""This platform allows several binary sensor to be grouped into one binary sensor."""
from __future__ import annotations
import logging
from typing import Any
import voluptuous as vol
@ -34,8 +33,6 @@ DEFAULT_NAME = "Binary Sensor Group"
CONF_ALL = "all"
REG_KEY = f"{BINARY_SENSOR_DOMAIN}_registry"
_LOGGER = logging.getLogger(__name__)
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
{
vol.Required(CONF_ENTITIES): cv.entities_domain(BINARY_SENSOR_DOMAIN),