diff options
Diffstat (limited to 'lib/python/qmk/info.py')
-rw-r--r-- | lib/python/qmk/info.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/python/qmk/info.py b/lib/python/qmk/info.py index cc9948451..dc42fdd4d 100644 --- a/lib/python/qmk/info.py +++ b/lib/python/qmk/info.py | |||
@@ -122,11 +122,6 @@ def _extract_features(info_data, rules): | |||
122 | if rules.get('BOOTMAGIC_ENABLE') == 'full': | 122 | if rules.get('BOOTMAGIC_ENABLE') == 'full': |
123 | rules['BOOTMAGIC_ENABLE'] = 'on' | 123 | rules['BOOTMAGIC_ENABLE'] = 'on' |
124 | 124 | ||
125 | # Skip non-boolean features we haven't implemented special handling for | ||
126 | for feature in 'HAPTIC_ENABLE', 'QWIIC_ENABLE': | ||
127 | if rules.get(feature): | ||
128 | del rules[feature] | ||
129 | |||
130 | # Process the rest of the rules as booleans | 125 | # Process the rest of the rules as booleans |
131 | for key, value in rules.items(): | 126 | for key, value in rules.items(): |
132 | if key.endswith('_ENABLE'): | 127 | if key.endswith('_ENABLE'): |