mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 19:53:34 +00:00
12 lines
201 B
Python
12 lines
201 B
Python
|
"""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."""
|