mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 03:33:35 +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.
31 lines
619 B
Python
31 lines
619 B
Python
"""Module for individual feature modules."""
|
|
|
|
from .ambientlight import AmbientLight
|
|
from .antitheft import Antitheft
|
|
from .cloud import Cloud
|
|
from .countdown import Countdown
|
|
from .emeter import Emeter
|
|
from .led import Led
|
|
from .lighteffect import LightEffect
|
|
from .motion import Motion
|
|
from .rulemodule import Rule, RuleModule
|
|
from .schedule import Schedule
|
|
from .time import Time
|
|
from .usage import Usage
|
|
|
|
__all__ = [
|
|
"AmbientLight",
|
|
"Antitheft",
|
|
"Cloud",
|
|
"Countdown",
|
|
"Emeter",
|
|
"Led",
|
|
"LightEffect",
|
|
"Motion",
|
|
"Rule",
|
|
"RuleModule",
|
|
"Schedule",
|
|
"Time",
|
|
"Usage",
|
|
]
|