Skip to content

Commit

Permalink
removed unwanted print in dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Aug 6, 2023
1 parent 1d2a8ec commit bf8f596
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions apps/_dashboard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ def routes():
def apps():
"""Returns a list of installed apps"""
apps = os.listdir(FOLDER)
print(APP_NAMES)
exposed_names = APP_NAMES and APP_NAMES.split(",")
apps = [
{"name": app, "error": Reloader.ERRORS.get(app)}
Expand Down Expand Up @@ -299,7 +298,6 @@ def packed(path):
):
filename = os.path.join(root, name)
short = filename[len(app_dir + os.path.sep) :]
print("added", filename, short)
zip.write(filename, short)
zip.close()
data = store.getvalue()
Expand Down Expand Up @@ -491,7 +489,6 @@ def new_app():
if process.returncode != 0:
abort(500)
elif form["type"] == "upload":
print(request.files.keys())
prepare_target_dir(form, target_dir)
source_stream = io.BytesIO(base64.b64decode(form["file"]))
zfile = zipfile.ZipFile(source_stream, "r")
Expand Down

0 comments on commit bf8f596

Please sign in to comment.