From 3d75af887296c8c20a6d443f74b731063d4c91c8 Mon Sep 17 00:00:00 2001 From: SevLG Date: Thu, 18 Apr 2024 16:41:19 +0200 Subject: [PATCH] Removed some prints left from testing --- security.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/security.py b/security.py index 3b303ad..57cfc7a 100644 --- a/security.py +++ b/security.py @@ -11,11 +11,6 @@ def api_key_required(func): @functools.wraps(func) def decorator(*args, **kwargs): api_key = request.headers.get("x-api-key") - print("headers: ") - for item in list(request.headers): - print(item) - print("api_key: ") - print(api_key) if not api_key: abort( 400,