Export modules & make sphinx happy (#334)

This commit is contained in:
Teemu R
2022-04-06 01:41:08 +02:00
committed by GitHub
parent d848117384
commit a39cef9a8c
6 changed files with 26 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
# flake8: noqa
"""Module for individual feature modules."""
from .ambientlight import AmbientLight
from .antitheft import Antitheft
from .cloud import Cloud
@@ -10,3 +10,18 @@ from .rulemodule import Rule, RuleModule
from .schedule import Schedule
from .time import Time
from .usage import Usage
__all__ = [
"AmbientLight",
"Antitheft",
"Cloud",
"Countdown",
"Emeter",
"Module",
"Motion",
"Rule",
"RuleModule",
"Schedule",
"Time",
"Usage",
]