reformat to satisfy "black" check

This commit is contained in:
apparentorder 2023-08-13 13:24:50 +02:00
parent 70a64f5c67
commit 82e5d01f8f
No known key found for this signature in database

View File

@ -1,8 +1,8 @@
from flask import request
from app import app
@app.route("/aws-sigv4", methods=["POST"])
def aws_sigv4():
auth = request.headers.get('Authorization')
auth = request.headers.get("Authorization")
return f"Received Authorization header: {auth}"