mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-26 04:53:34 +00:00
7 lines
150 B
Python
7 lines
150 B
Python
|
"""Schedule module implementation."""
|
||
|
from .rulemodule import RuleModule
|
||
|
|
||
|
|
||
|
class Schedule(RuleModule):
|
||
|
"""Implements the scheduling interface."""
|