From 1755385a6b946631a9f8137a665bb5556b3344d8 Mon Sep 17 00:00:00 2001 From: Sebastian Tobie Date: Mon, 4 Mar 2024 23:07:27 +0100 Subject: [PATCH] renamed Module --- plugins/modules/timer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/timer.py b/plugins/modules/timer.py index c0ba3f5..c4a10a5 100644 --- a/plugins/modules/timer.py +++ b/plugins/modules/timer.py @@ -14,7 +14,7 @@ __module_name__ = "TimerModule" @installable -class Module(SystemdUnitModule, SystemdReloadMixin): # type: ignore +class TimerModule(SystemdUnitModule, SystemdReloadMixin): # type: ignore """Creates Timer units""" name = "timer" @@ -245,4 +245,4 @@ short_description: Creates Timer units """ if __name__ == "__main__": - Module()() + TimerModule()()