mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-26 13:03:34 +00:00
da441bc697
Also updates CI pypy versions to be 3.9 and 3.10 which are the currently [supported versions](https://www.pypy.org/posts/2024/01/pypy-v7315-release.html). Otherwise latest cryptography doesn't ship with pypy3.8 wheels and is unable to build on windows. Also updates the `codecov-action` to v4 which fixed some intermittent uploading errors.
27 lines
531 B
Python
27 lines
531 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 .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",
|
|
"Motion",
|
|
"Rule",
|
|
"RuleModule",
|
|
"Schedule",
|
|
"Time",
|
|
"Usage",
|
|
]
|