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 6174c96 commit f913398Copy full SHA for f913398
src/aleph/vm/orchestrator/resources.py
@@ -87,8 +87,8 @@ def get_machine_properties() -> MachineProperties:
87
cpu_info = cpuinfo.get_cpu_info() # Slow
88
return MachineProperties(
89
cpu=CpuProperties(
90
- architecture=cpu_info.get("raw_arch_string"),
91
- vendor=cpu_info.get("vendor_id"),
+ architecture=cpu_info["raw_arch_string"],
+ vendor=cpu_info["vendor_id"],
92
),
93
)
94
0 commit comments