mirror of
				https://github.com/brain-tec/account_ebics.git
				synced 2025-11-04 07:00:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			206 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			206 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import logging
 | 
						|
 | 
						|
_logger = logging.getLogger(__name__)
 | 
						|
 | 
						|
try:
 | 
						|
    from . import models
 | 
						|
    from . import wizards
 | 
						|
except Exception:
 | 
						|
    _logger.warning("Import Error, check if fintech lib has been installed")
 |