mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-08-09 20:24:02 +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 {}
|