diff --git a/fastapi/routing.py b/fastapi/routing.py index 84a2840aa..e0ea705f3 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -4453,7 +4453,7 @@ class APIRouter(routing.Router): def combine_tags( self, *entities: Annotated[ - None | str | routing.Route | Iterable, + Union[None, str, routing.Route, Sequence], Doc( """ Combine the router's current tags with those of the provided entities.