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 f4833dd commit c781576Copy full SHA for c781576
linodecli/configuration/config.py
@@ -404,9 +404,9 @@ def configure(
404
t["id"]
405
for t in _do_get_request(self.base_url, "/linode/types")["data"]
406
])
407
- images = [
+ images = sorted([
408
i["id"] for i in _do_get_request(self.base_url, "/images")["data"]
409
- ]
+ ])
410
411
is_full_access = _check_full_access(self.base_url, token)
412
0 commit comments