Browse Source

🐛 Fix mypy route errors after merging #415 (#462)

pull/468/head
Sebastián Ramírez 6 years ago
committed by GitHub
parent
commit
e71636e381
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      fastapi/routing.py

6
fastapi/routing.py

@ -449,9 +449,11 @@ class APIRouter(routing.Router):
), "A path prefix must not end with '/', as the routes will start with '/'"
else:
for r in router.routes:
if not r.path:
path = getattr(r, "path")
name = getattr(r, "name", "unknown")
if path is not None and not path:
raise Exception(
f"Prefix and path cannot be both empty (operation: {r.name})"
f"Prefix and path cannot be both empty (path operation: {name})"
)
if responses is None:
responses = {}

Loading…
Cancel
Save