diff options
Diffstat (limited to 'lib/python/qmk')
-rw-r--r-- | lib/python/qmk/info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/info.py b/lib/python/qmk/info.py index 1b4c42ff4..edbf5d7c8 100644 --- a/lib/python/qmk/info.py +++ b/lib/python/qmk/info.py | |||
@@ -113,7 +113,7 @@ def _extract_features(info_data, rules): | |||
113 | rules['BOOTMAGIC_ENABLE'] = 'on' | 113 | rules['BOOTMAGIC_ENABLE'] = 'on' |
114 | 114 | ||
115 | # Skip non-boolean features we haven't implemented special handling for | 115 | # Skip non-boolean features we haven't implemented special handling for |
116 | for feature in 'HAPTIC_ENABLE', 'QWIIC_ENABLE': | 116 | for feature in ('HAPTIC_ENABLE',): |
117 | if rules.get(feature): | 117 | if rules.get(feature): |
118 | del rules[feature] | 118 | del rules[feature] |
119 | 119 | ||