python-kasa/kasa/smart/modules/childdevicemodule.py

11 lines
252 B
Python
Raw Normal View History

"""Implementation for child devices."""
from ..smartmodule import SmartModule
class ChildDeviceModule(SmartModule):
"""Implementation for child devices."""
REQUIRED_COMPONENT = "child_device"
2024-03-15 16:18:13 +00:00
QUERY_GETTER_NAME = "get_child_device_list"