From 627aa62d2abc3a218c98b00ff5467879885e2a42 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 13:37:49 +0000 Subject: [PATCH] style: format code with Autopep8, Black, isort and Yapf This commit fixes the style issues introduced in 145a9bf according to the output from Autopep8, Black, isort and Yapf. Details: None --- server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server.py b/server.py index 4aed8ff..3ec9e2b 100644 --- a/server.py +++ b/server.py @@ -62,7 +62,8 @@ def func1(): return jsonify({"Datetime": datetime.now(), "Succeed": x}) -@app.route("/users/", methods=["GET", "PUT", "DELETE"]) # type: ignore +# type: ignore +@app.route("/users/", methods=["GET", "PUT", "DELETE"]) def func2(doc_id: str): """Function to handle GET, PUT and DELETE requests on /users/ route""" if request.method == "GET":