Fixed f-string

This commit is contained in:
Joel Collins 2020-01-14 15:06:31 +00:00
parent b1303926db
commit 38f92c6261

View file

@ -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: