mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-01 00:17:55 +03:00 
			
		
		
		
	* Add implementation * Add tests for module and class * Add tests for module and class for string ids * Update tests with typing * Add tests for invalid type of marker * Add docs and the example * Update changelog * Fix Python 3.6 tests and flake8
		
			
				
	
	
		
			9 lines
		
	
	
		
			203 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			203 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Test module for wiring with invalid type of marker for attribute injection."""
 | |
| 
 | |
| from dependency_injector.wiring import Closing
 | |
| 
 | |
| from .container import Container
 | |
| 
 | |
| 
 | |
| service = Closing[Container.service]
 |