mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-01-09 22:37:08 +00:00
10 lines
234 B
Python
10 lines
234 B
Python
|
"""Implementation of the antitheft module."""
|
||
|
from .rulemodule import RuleModule
|
||
|
|
||
|
|
||
|
class Antitheft(RuleModule):
|
||
|
"""Implementation of the antitheft module.
|
||
|
|
||
|
This shares the functionality among other rule-based modules.
|
||
|
"""
|