Browse Source

Fix typings for earlier python versions

pull/13626/head
John Mahoney 4 months ago
parent
commit
50ea206665
  1. 2
      fastapi/routing.py

2
fastapi/routing.py

@ -4453,7 +4453,7 @@ class APIRouter(routing.Router):
def combine_tags( def combine_tags(
self, self,
*entities: Annotated[ *entities: Annotated[
None | str | routing.Route | Iterable, Union[None, str, routing.Route, Sequence],
Doc( Doc(
""" """
Combine the router's current tags with those of the provided entities. Combine the router's current tags with those of the provided entities.

Loading…
Cancel
Save