Cleanup unused loggers (components A-M) (#41600)

This commit is contained in:
Philip Allgaier 2020-10-12 16:59:05 +02:00 committed by GitHub
parent 9e6df38994
commit 625bbe6238
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
251 changed files with 16 additions and 891 deletions

View file

@ -1,6 +1,4 @@
"""Support for HomeKit Controller locks."""
import logging
from aiohomekit.model.characteristics import CharacteristicsTypes
from homeassistant.components.lock import LockEntity
@ -9,8 +7,6 @@ from homeassistant.core import callback
from . import KNOWN_DEVICES, HomeKitEntity
_LOGGER = logging.getLogger(__name__)
STATE_JAMMED = "jammed"
CURRENT_STATE_MAP = {0: STATE_UNLOCKED, 1: STATE_LOCKED, 2: STATE_JAMMED, 3: None}