mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 11:43:34 +00:00
17 lines
353 B
Python
17 lines
353 B
Python
|
"""Implementation of homekit module."""
|
||
|
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from ..smartcammodule import SmartCamModule
|
||
|
|
||
|
|
||
|
class HomeKit(SmartCamModule):
|
||
|
"""Implementation of homekit module."""
|
||
|
|
||
|
REQUIRED_COMPONENT = "homekit"
|
||
|
|
||
|
@property
|
||
|
def info(self) -> dict[str, str]:
|
||
|
"""Not supported, return empty dict."""
|
||
|
return {}
|