From 38f92c6261156a9a7439894b897646db71f36b57 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Tue, 14 Jan 2020 15:06:31 +0000 Subject: [PATCH] Fixed f-string --- openflexure_microscope/common/flask_labthings/quick.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openflexure_microscope/common/flask_labthings/quick.py b/openflexure_microscope/common/flask_labthings/quick.py index 97f919a8..2f9f5ed4 100644 --- a/openflexure_microscope/common/flask_labthings/quick.py +++ b/openflexure_microscope/common/flask_labthings/quick.py @@ -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: