typing: Indicate tuples to be extended

Change-Id: Ie5907de8d60f2f39e98f6a88227cebb2e2ff565c
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane
2025-02-19 20:15:43 +00:00
parent 9c7a5d4e51
commit bdd55d989d
43 changed files with 164 additions and 185 deletions

View File

@@ -372,7 +372,7 @@ class ListKeypair(command.Lister):
else:
data = compute_client.keypairs(**kwargs)
columns = ("Name", "Fingerprint")
columns: tuple[str, ...] = ("Name", "Fingerprint")
if sdk_utils.supports_microversion(compute_client, '2.2'):
columns += ("Type",)