Merge "typing: Indicate another tuple to be extended"

This commit is contained in:
Zuul 2025-04-01 14:49:36 +00:00 committed by Gerrit Code Review
commit 8e95c0ed31

@ -239,7 +239,7 @@ class ListEndpoint(command.Lister):
)
if endpoint:
column_headers = ('ID', 'Name')
column_headers: tuple[str, ...] = ('ID', 'Name')
columns: tuple[str, ...] = ('id', 'name')
data = identity_client.endpoint_projects(endpoint=endpoint.id)
else: