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