mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
da13341453
* 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]
|