Clean up Tuya loggers (#62999)

This commit is contained in:
Franck Nijhof 2021-12-29 15:12:27 +01:00 committed by GitHub
parent bd98fc231d
commit 32d1e28dab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 17 deletions

View file

@ -2,7 +2,6 @@
from __future__ import annotations
from dataclasses import dataclass
import logging
from typing import Any
from tuya_iot import TuyaDevice, TuyaDeviceManager
@ -27,8 +26,6 @@ from . import HomeAssistantTuyaData
from .base import EnumTypeData, IntegerTypeData, TuyaEntity
from .const import DOMAIN, TUYA_DISCOVERY_NEW, DPCode
_LOGGER = logging.getLogger(__name__)
@dataclass
class TuyaCoverEntityDescription(CoverEntityDescription):