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.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							 | 
							
							# ruff: noqa: TCH004
 | 
						
						
						
						
							 | 
							
							from typing import TYPE_CHECKING
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							if TYPE_CHECKING:
 | 
						
						
						
						
							 | 
							
							    # import modules that have public classes/functions
 | 
						
						
						
						
							 | 
							
							    from pandas.io import (
 | 
						
						
						
						
							 | 
							
							        formats,
 | 
						
						
						
						
							 | 
							
							        json,
 | 
						
						
						
						
							 | 
							
							        stata,
 | 
						
						
						
						
							 | 
							
							    )
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							    # mark only those modules as public
 | 
						
						
						
						
							 | 
							
							    __all__ = ["formats", "json", "stata"]
 |