🎨 [pre-commit.ci] Auto format from pre-commit.com hooks

This commit is contained in:
pre-commit-ci[bot] 2025-04-21 21:07:51 +00:00
parent cb2e503ab9
commit b2855f0326
1 changed files with 7 additions and 7 deletions

View File

@ -4451,16 +4451,16 @@ class APIRouter(routing.Router):
return decorator
def combine_tags(
self,
*entities: Annotated[
Union[None, str, routing.Route, Sequence],
Doc(
"""
self,
*entities: Annotated[
Union[None, str, routing.Route, Sequence],
Doc(
"""
Combine the router's current tags with those of the provided entities.
Supports None, strings, iterables, and Route objects with a `tags` attribute.
"""
),
]
),
],
) -> List[str]:
tags = set(self.tags or [])
for entity in entities: