Skip to content
Snippets Groups Projects

Make MyPy happy

Merged karp requested to merge make-mypy-happy into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -6,7 +6,7 @@ bp = Blueprint("main", __name__)
@bp.get("/", defaults={"_": ""})
@bp.get("/<path:_>")
def index(_: object) -> str:
def index(_: str) -> str:
"""
Serve the index page at /*, i.e. at any path below / and at / itself.
Loading