mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 11:43:34 +00:00
f259a8f162
Address the inconsistent naming of smart modules by removing all "Module" suffixes and aligning filenames with class names. Removes the casting of modules to the correct module type now that is is redundant. Update the adding of iot modules to use the ModuleName class rather than a free string.
11 lines
246 B
Python
11 lines
246 B
Python
"""Implementation for child devices."""
|
|
|
|
from ..smartmodule import SmartModule
|
|
|
|
|
|
class ChildDevice(SmartModule):
|
|
"""Implementation for child devices."""
|
|
|
|
REQUIRED_COMPONENT = "child_device"
|
|
QUERY_GETTER_NAME = "get_child_device_list"
|