@@ -290,7 +290,7 @@ def _list_quota_compute(self, parsed_args, project_ids):
290290 if default_result != project_result :
291291 result += project_result
292292
293- columns = (
293+ columns : tuple [ str , ...] = (
294294 'id' ,
295295 'cores' ,
296296 'injected_files' ,
@@ -303,7 +303,7 @@ def _list_quota_compute(self, parsed_args, project_ids):
303303 'server_groups' ,
304304 'server_group_members' ,
305305 )
306- column_headers = (
306+ column_headers : tuple [ str , ...] = (
307307 'Project ID' ,
308308 'Cores' ,
309309 'Injected Files' ,
@@ -352,7 +352,7 @@ def _list_quota_volume(self, parsed_args, project_ids):
352352 if default_result != project_result :
353353 result += project_result
354354
355- columns = (
355+ columns : tuple [ str , ...] = (
356356 'id' ,
357357 'backups' ,
358358 'backup_gigabytes' ,
@@ -361,7 +361,7 @@ def _list_quota_volume(self, parsed_args, project_ids):
361361 'snapshots' ,
362362 'volumes' ,
363363 )
364- column_headers = (
364+ column_headers : tuple [ str , ...] = (
365365 'Project ID' ,
366366 'Backups' ,
367367 'Backup Gigabytes' ,
@@ -407,7 +407,7 @@ def _list_quota_network(self, parsed_args, project_ids):
407407 if default_result != project_result :
408408 result += project_result
409409
410- columns = (
410+ columns : tuple [ str , ...] = (
411411 'id' ,
412412 'floating_ips' ,
413413 'networks' ,
@@ -419,7 +419,7 @@ def _list_quota_network(self, parsed_args, project_ids):
419419 'subnets' ,
420420 'subnet_pools' ,
421421 )
422- column_headers = (
422+ column_headers : tuple [ str , ...] = (
423423 'Project ID' ,
424424 'Floating IPs' ,
425425 'Networks' ,
@@ -823,11 +823,11 @@ def take_action(self, parsed_args):
823823 if k not in ('usage' , 'reservation' )
824824 ]
825825
826- columns = (
826+ columns : tuple [ str , ...] = (
827827 'resource' ,
828828 'limit' ,
829829 )
830- column_headers = (
830+ column_headers : tuple [ str , ...] = (
831831 'Resource' ,
832832 'Limit' ,
833833 )
0 commit comments