From 768b0fccbe5d6f9d645065a49cfb9f492b479d60 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 06:53:25 +0000 Subject: [PATCH] style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf This commit fixes the style issues introduced in 95d4568 according to the output from Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf. Details: None --- web/middlewares.py | 1 + 1 file changed, 1 insertion(+) diff --git a/web/middlewares.py b/web/middlewares.py index 602398f..79f3516 100644 --- a/web/middlewares.py +++ b/web/middlewares.py @@ -1,6 +1,7 @@ # web/middlewares.py from flask import request + @app.before_request def log_request(): logging.info(f"Request received:{request.method} {request.url}")