|  |  | @ -77,6 +77,9 @@ valid = True | 
			
		
	
		
		
			
				
					
					|  |  |  | for idx1, f1 in enumerate(fingerprints_flat): |  |  |  | for idx1, f1 in enumerate(fingerprints_flat): | 
			
		
	
		
		
			
				
					
					|  |  |  |   for idx2, f2 in enumerate(fingerprints_flat): |  |  |  |   for idx2, f2 in enumerate(fingerprints_flat): | 
			
		
	
		
		
			
				
					
					|  |  |  |     if idx1 < idx2 and not check_fingerprint_consistency(f1, f2): |  |  |  |     if idx1 < idx2 and not check_fingerprint_consistency(f1, f2): | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |       if car_names[idx1] == car_names[idx2]: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         continue | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |       valid = False |  |  |  |       valid = False | 
			
		
	
		
		
			
				
					
					|  |  |  |       print("Those two fingerprints are inconsistent {0} {1}".format(car_names[idx1], car_names[idx2])) |  |  |  |       print("Those two fingerprints are inconsistent {0} {1}".format(car_names[idx1], car_names[idx2])) | 
			
		
	
		
		
			
				
					
					|  |  |  |       print("") |  |  |  |       print("") | 
			
		
	
	
		
		
			
				
					|  |  | 
 |