We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e6db7 commit 2cce47dCopy full SHA for 2cce47d
src/flask_debugtoolbar/__init__.py
@@ -95,8 +95,7 @@ def init_app(self, app: Flask) -> None:
95
96
if not app.config.get("SECRET_KEY"):
97
raise RuntimeError(
98
- "The Flask-DebugToolbar requires the 'SECRET_KEY' config "
99
- "var to be set"
+ "The Flask-DebugToolbar requires the 'SECRET_KEY' config var to be set"
100
)
101
102
self._validate_and_configure_toolbar_routes_host(app)
@@ -326,7 +325,7 @@ def process_response(self, response: Response) -> Response:
326
325
after = ""
327
else:
328
warnings.warn(
329
- "Could not insert debug toolbar." " </body> tag not found in response.",
+ "Could not insert debug toolbar. </body> tag not found in response.",
330
stacklevel=1,
331
332
return response
0 commit comments