From ecf4e63415d56341f049068306e807c697a15ce9 Mon Sep 17 00:00:00 2001 From: Namit Nathwani Date: Sun, 24 Nov 2024 12:40:19 +0530 Subject: [PATCH] update: remove unintentional changes --- supertokens_python/framework/flask/flask_middleware.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supertokens_python/framework/flask/flask_middleware.py b/supertokens_python/framework/flask/flask_middleware.py index 7c7ee6dc..957b47cf 100644 --- a/supertokens_python/framework/flask/flask_middleware.py +++ b/supertokens_python/framework/flask/flask_middleware.py @@ -60,7 +60,7 @@ def _(): if result is not None: if isinstance(result, FlaskResponse): return result.response - raise Exception(f"Should never come here, {type(result)=}") + raise Exception("Should never come here") return None @app.after_request