We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36ce10 commit 2e618bfCopy full SHA for 2e618bf
linodecli/configuration/config.py
@@ -403,10 +403,12 @@ def configure(
403
for r in _do_get_request(self.base_url, "/regions")["data"]
404
]
405
)
406
- types = [
407
- t["id"]
408
- for t in _do_get_request(self.base_url, "/linode/types")["data"]
409
- ]
+ types = sorted(
+ [
+ t["id"]
+ for t in _do_get_request(self.base_url, "/linode/types")["data"]
410
+ ]
411
+ )
412
images = [
413
i["id"] for i in _do_get_request(self.base_url, "/images")["data"]
414
0 commit comments