Skip to content

Commit

Permalink
Remove type alias due to py38
Browse files Browse the repository at this point in the history
  • Loading branch information
maldoinc committed Sep 11, 2023
1 parent 8639073 commit ffebda0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions wireup/ioc/dependency_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from .parameter import ParameterBag

__T = TypeVar("__T")
_SignatureParams = dict[str, Any]


class DependencyContainer:
Expand Down Expand Up @@ -52,7 +51,7 @@ def __init__(self, parameter_bag: ParameterBag) -> None:

self.__initialized_objects: dict[_ContainerObjectIdentifier, object] = {}
self.__initialized_proxies: dict[_ContainerObjectIdentifier, ContainerProxy] = {}
self.__initialized_args: dict[tuple[Callable, __T], _SignatureParams] = {}
self.__initialized_args: dict[tuple[Callable, __T], dict[str, Any]] = {}

self.params: ParameterBag = parameter_bag
self.initialization_context = DependencyInitializationContext()
Expand Down

0 comments on commit ffebda0

Please sign in to comment.