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 5eb10e3ce..c3bbcf3eb 100644
--- a/lib/python/qmk/info.py
+++ b/lib/python/qmk/info.py
@@ -112,11 +112,6 @@ def _extract_features(info_data, rules):
112 if rules.get('BOOTMAGIC_ENABLE') == 'full': 112 if rules.get('BOOTMAGIC_ENABLE') == 'full':
113 rules['BOOTMAGIC_ENABLE'] = 'on' 113 rules['BOOTMAGIC_ENABLE'] = 'on'
114 114
115 # Skip non-boolean features we haven't implemented special handling for
116 for feature in ('HAPTIC_ENABLE',):
117 if rules.get(feature):
118 del rules[feature]
119
120 # Process the rest of the rules as booleans 115 # Process the rest of the rules as booleans
121 for key, value in rules.items(): 116 for key, value in rules.items():
122 if key.endswith('_ENABLE'): 117 if key.endswith('_ENABLE'):