[modules] Adjust update schedules
Make a few modules update more seldomly, to reduce CPU consumption.
This commit is contained in:
parent
0f6dfb3f1a
commit
18154dd74f
7 changed files with 24 additions and 12 deletions
|
@ -1,15 +1,17 @@
|
|||
# pylint: disable=C0111,R0903
|
||||
|
||||
'''Displays the current date and time.
|
||||
"""Displays the current date and time.
|
||||
|
||||
Parameters:
|
||||
* date.format: strftime()-compatible formatting string
|
||||
* date.locale: locale to use rather than the system default
|
||||
'''
|
||||
"""
|
||||
|
||||
import core.decorators
|
||||
from .datetime import Module
|
||||
|
||||
class Module(Module):
|
||||
@core.decorators.every(hours=1)
|
||||
def __init__(self, config):
|
||||
super().__init__(config)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue