diff --git a/tests/typing/typing_route.py b/tests/typing/typing_route.py index db0545d4..5a677bc0 100644 --- a/tests/typing/typing_route.py +++ b/tests/typing/typing_route.py @@ -25,7 +25,7 @@ def hello_bytes() -> bytes: def hello_json() -> Response: return jsonify({"response": "Hello, World!"}) - +#Returns hello with the current status code when "/status" is accessed or "/status" is accessed with the parameter "code" @app.route("/status") @app.route("/status/") def tuple_status(code: int = 200) -> tuple[str, int]: