From 89da5d6c0d6396bdcbc290837a8a5eb28285b2f5 Mon Sep 17 00:00:00 2001 From: Lee Date: Sat, 14 Sep 2024 23:36:29 +0000 Subject: [PATCH] Update src/command/impl/removeCommand.py --- src/command/impl/removeCommand.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/command/impl/removeCommand.py b/src/command/impl/removeCommand.py index 4a71fc6..5550ab1 100644 --- a/src/command/impl/removeCommand.py +++ b/src/command/impl/removeCommand.py @@ -1,7 +1,6 @@ from colorama import Fore from command.command import Command from traefik.traefikConfig import TraefikConfig -from utils.dockerUtils import restartTraefik class RemoveCommand(Command): def __init__(self): @@ -22,6 +21,4 @@ class RemoveCommand(Command): traefikConfig.removeRouter(name) - traefikConfig.save() - - restartTraefik() \ No newline at end of file + traefikConfig.save() \ No newline at end of file