Commit 38f92c62 authored by Joel Collins's avatar Joel Collins
Browse files

Fixed f-string

parent b1303926
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ def create_app(

    # Handle CORS
    if handle_cors:
        cors_handler = CORS(app, resources=r"{prefix}/*")
        cors_handler = CORS(app, resources=f"{prefix}/*")

    # Handle errors
    if handle_errors: