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 78c8c9a commit 6b8a45aCopy full SHA for 6b8a45a
1 file changed
checkbox-ng/checkbox_ng/support/device_info.py
@@ -54,7 +54,7 @@ def get_bios_info() -> dict:
54
}
55
bios_root = Path("/sys/class/dmi/id/")
56
bios_data_name = "bios_{}"
57
- for key in bios_data:
+ for key in sorted(bios_data.keys()):
58
try:
59
value = (
60
(bios_root / bios_data_name.format(key)).read_text().strip()
0 commit comments