python-kasa/kasa/plug.py

13 lines
202 B
Python
Raw Normal View History

"""Module for a TAPO Plug."""
import logging
from abc import ABC
from .device import Device
_LOGGER = logging.getLogger(__name__)
class Plug(Device, ABC):
"""Base class to represent a Plug."""