()
| 8145 | applied = {} |
| 8146 | for key, value in incoming.items(): |
| 8147 | if key.startswith('__') or key in CONFIG_EXPORT_EXCLUDE: |
| 8148 | continue |
| 8149 | if key in CONFIG_HARDWARE_KEYS and not include_hardware: |
| 8150 | skipped_hardware.append(key) |
| 8151 | continue |
| 8152 | applied[key] = value |
| 8153 | |
| 8154 | if not applied: |
| 8155 | return jsonify({'success': False, |
no test coverage detected