You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							 | 
							
							from typing import NamedTuple
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							class FeatureLibLocation(NamedTuple):
 | 
						
						
						
						
							 | 
							
							    """A location in a feature file"""
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							    file: str
 | 
						
						
						
						
							 | 
							
							    line: int
 | 
						
						
						
						
							 | 
							
							    column: int
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							    def __str__(self):
 | 
						
						
						
						
							 | 
							
							        return f"{self.file}:{self.line}:{self.column}"
 |