mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-26 04:53:34 +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.
|
||
|
"""
|