anydi 0.38.0__py3-none-any.whl → 0.38.2rc0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anydi/__init__.py +1 -2
- anydi/_container.py +414 -270
- anydi/_types.py +80 -2
- anydi/ext/pytest_plugin.py +6 -21
- {anydi-0.38.0.dist-info → anydi-0.38.2rc0.dist-info}/METADATA +1 -1
- {anydi-0.38.0.dist-info → anydi-0.38.2rc0.dist-info}/RECORD +9 -10
- anydi/_provider.py +0 -232
- {anydi-0.38.0.dist-info → anydi-0.38.2rc0.dist-info}/WHEEL +0 -0
- {anydi-0.38.0.dist-info → anydi-0.38.2rc0.dist-info}/entry_points.txt +0 -0
- {anydi-0.38.0.dist-info → anydi-0.38.2rc0.dist-info}/licenses/LICENSE +0 -0
anydi/__init__.py
CHANGED
|
@@ -11,8 +11,7 @@ from ._container import (
|
|
|
11
11
|
singleton,
|
|
12
12
|
transient,
|
|
13
13
|
)
|
|
14
|
-
from .
|
|
15
|
-
from ._types import Marker, Scope
|
|
14
|
+
from ._types import Marker, ProviderArgs as Provider, Scope
|
|
16
15
|
|
|
17
16
|
# Alias for dependency auto marker
|
|
18
17
|
auto = cast(Any, Marker())
|