We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c4b202 commit 8de4ea6Copy full SHA for 8de4ea6
resources/wx_gui/gui_support.py
@@ -205,7 +205,7 @@ def host_has_3802_gpu(self) -> bool:
205
gpu_dict = smbios_data.smbios_dictionary[model]["Stock GPUs"] if model in smbios_data.smbios_dictionary else []
206
207
for gpu in gpu_dict:
208
- if not self.constants.custom_model:
+ if not self.constants.custom_model and hasattr(gpu, 'arch'):
209
gpu = gpu.arch
210
if gpu in [
211
device_probe.Intel.Archs.Ivy_Bridge,
0 commit comments