From 9ca94d0e052d754a2a8e01508dd93b2e438850a3 Mon Sep 17 00:00:00 2001 From: Liam Date: Wed, 17 Apr 2024 02:31:19 +0100 Subject: [PATCH] fix missing usage --- src/command/impl/restartCommand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/impl/restartCommand.py b/src/command/impl/restartCommand.py index 0112e7b..434ba5c 100644 --- a/src/command/impl/restartCommand.py +++ b/src/command/impl/restartCommand.py @@ -4,7 +4,7 @@ from utils.dockerUtils import restartTraefik class RestartCommand(Command): def __init__(self): - super().__init__("restart", "Restart traefik", "") + super().__init__("restart", "Restart traefik", "restart") def execute(self, traefikConfig: TraefikConfig, args): restartTraefik() \ No newline at end of file