Skip to content

Commit

Permalink
Fix obj identifier typing
Browse files Browse the repository at this point in the history
  • Loading branch information
maldoinc committed May 4, 2024
1 parent 3b32f44 commit c60c9ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wireup/ioc/dependency_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import asyncio
import functools
import sys
from typing import TYPE_CHECKING, Any, Callable, Tuple, TypeVar, overload
from typing import TYPE_CHECKING, Any, Callable, Optional, Tuple, TypeVar, overload

from .override_manager import OverrideManager

Expand Down Expand Up @@ -35,7 +35,7 @@
from .parameter import ParameterBag

__T = TypeVar("__T")
__ObjectIdentifier = Tuple[type, Qualifier | None]
__ObjectIdentifier = Tuple[type, Optional[Qualifier]]


class DependencyContainer:
Expand Down

0 comments on commit c60c9ee

Please sign in to comment.