[modules] Adjust update schedules

Make a few modules update more seldomly, to reduce CPU consumption.
This commit is contained in:
tobi-wan-kenobi 2020-04-02 16:30:31 +02:00
parent 0f6dfb3f1a
commit 18154dd74f
7 changed files with 24 additions and 12 deletions

View file

@ -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)