Merge remote-tracking branch 'origin/develop' into xap

This commit is contained in:
QMK Bot
2022-11-23 18:49:04 +00:00
4 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -451,7 +451,7 @@ def _config_to_json(key_type, config_value):
if array_type == 'int':
return list(map(int, config_value.split(',')))
else:
return config_value.split(',')
return list(map(str.strip, config_value.split(',')))
elif key_type == 'bool':
return config_value in true_values