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
@@ -5,7 +5,7 @@ from .blueprint import bp
@bp.get("/<path:_>")
def fallback_not_found(_: object) -> ProblemResponse:
def fallback_not_found(_: str) -> ProblemResponse:
"""
If you can't find a matching API endpoint, fallback to returning a 404.
Loading