Remove unnecessary prints

This commit is contained in:
Théophile Diot 2023-04-29 17:13:30 +02:00
parent 641a27f5ec
commit c8908695be
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 0 additions and 4 deletions

View File

@ -483,8 +483,6 @@ def services():
):
del variables[variable]
print(variables, flush=True)
error = app.config["CONFIG"].check_variables(variables)
if error:
@ -636,8 +634,6 @@ def configs():
operation = app.config["CONFIGFILES"].check_path(variables["path"])
print(variables, flush=True)
if operation:
flash(operation, "error")
return redirect(url_for("loading", next=url_for("configs"))), 500