mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-10-12 18:38:03 +00:00
Rename bulb interface to light and move fan and light interface to interfaces (#910)
Also rename BulbPreset to LightPreset.
This commit is contained in:
14
kasa/interfaces/__init__.py
Normal file
14
kasa/interfaces/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""Package for interfaces."""
|
||||
|
||||
from .fan import Fan
|
||||
from .led import Led
|
||||
from .light import Light, LightPreset
|
||||
from .lighteffect import LightEffect
|
||||
|
||||
__all__ = [
|
||||
"Fan",
|
||||
"Led",
|
||||
"Light",
|
||||
"LightEffect",
|
||||
"LightPreset",
|
||||
]
|
Reference in New Issue
Block a user