Skip to content

Commit

Permalink
Removed some prints left from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
SevLG committed Apr 18, 2024
1 parent 7156925 commit 3d75af8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions security.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 3d75af8

Please sign in to comment.