Fix g_led_config parse warning (#24769)
This commit is contained in:
parent
fe2200f73a
commit
53680fa6da
|
@ -789,8 +789,8 @@ def _extract_led_config(info_data, keyboard):
|
||||||
info_data[feature]['layout'] = ret
|
info_data[feature]['layout'] = ret
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
_log_warning(info_data, f'led_config: {file.name}: {e}')
|
_log_warning(info_data, f'led_config: {file.name}: {e}')
|
||||||
else:
|
else:
|
||||||
_log_warning(info_data, 'led_config: matrix size required to parse g_led_config')
|
_log_warning(info_data, 'led_config: matrix size required to parse g_led_config')
|
||||||
|
|
||||||
if info_data[feature].get('layout', None) and not info_data[feature].get('led_count', None):
|
if info_data[feature].get('layout', None) and not info_data[feature].get('led_count', None):
|
||||||
info_data[feature]['led_count'] = len(info_data[feature]['layout'])
|
info_data[feature]['led_count'] = len(info_data[feature]['layout'])
|
||||||
|
|
Loading…
Reference in New Issue