forked from mirrors/qmk_userspace
		
	qmk lint: fix TypeError (#18226)
		
	This commit is contained in:
		
					parent
					
						
							
								bc538e3776
							
						
					
				
			
			
				commit
				
					
						6f804f76b4
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -87,7 +87,7 @@ def keymap_check(kb, km):
 | 
				
			||||||
        return ok
 | 
					        return ok
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # Additional checks
 | 
					    # Additional checks
 | 
				
			||||||
    invalid_files = git_get_ignored_files(keymap_path.parent)
 | 
					    invalid_files = git_get_ignored_files(keymap_path.parent.as_posix())
 | 
				
			||||||
    for file in invalid_files:
 | 
					    for file in invalid_files:
 | 
				
			||||||
        cli.log.error(f'{kb}/{km}: The file "{file}" should not exist!')
 | 
					        cli.log.error(f'{kb}/{km}: The file "{file}" should not exist!')
 | 
				
			||||||
        ok = False
 | 
					        ok = False
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue