mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			306 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			306 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Copyright 2023 Nick Brassel (@tzarc)
 | 
						|
# SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
from milc import cli
 | 
						|
 | 
						|
from qmk.constants import QMK_FIRMWARE
 | 
						|
from qmk.cli.doctor.main import userspace_tests
 | 
						|
 | 
						|
 | 
						|
@cli.subcommand('Checks userspace configuration.')
 | 
						|
def userspace_doctor(cli):
 | 
						|
    userspace_tests(QMK_FIRMWARE)
 |