Skip to content

Commit 62c8b82

Browse files
committed
typing: Indicate another tuple to be extended
One has been introduced since Ie5907de8d60f2f39e98f6a88227cebb2e2ff565c merged. Change-Id: I37f7bf58a2cbecb69b370e832e56daa310cea3b6 Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
1 parent c9e4e54 commit 62c8b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openstackclient/identity/v3/endpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def take_action(self, parsed_args):
239239
)
240240

241241
if endpoint:
242-
column_headers = ('ID', 'Name')
242+
column_headers: tuple[str, ...] = ('ID', 'Name')
243243
columns: tuple[str, ...] = ('id', 'name')
244244
data = identity_client.endpoint_projects(endpoint=endpoint.id)
245245
else:

0 commit comments

Comments
 (0)