aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/info.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/info.py')
-rw-r--r--lib/python/qmk/info.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/python/qmk/info.py b/lib/python/qmk/info.py
index 85131b929..d81f30438 100644
--- a/lib/python/qmk/info.py
+++ b/lib/python/qmk/info.py
@@ -118,11 +118,6 @@ def _extract_features(info_data, rules):
118 if rules.get('BOOTMAGIC_ENABLE') == 'full': 118 if rules.get('BOOTMAGIC_ENABLE') == 'full':
119 rules['BOOTMAGIC_ENABLE'] = 'on' 119 rules['BOOTMAGIC_ENABLE'] = 'on'
120 120
121 # Skip non-boolean features we haven't implemented special handling for
122 for feature in 'HAPTIC_ENABLE', 'QWIIC_ENABLE':
123 if rules.get(feature):
124 del rules[feature]
125
126 # Process the rest of the rules as booleans 121 # Process the rest of the rules as booleans
127 for key, value in rules.items(): 122 for key, value in rules.items():
128 if key.endswith('_ENABLE'): 123 if key.endswith('_ENABLE'):