Skip to content

Commit

Permalink
Rm slots for dataclass
Browse files Browse the repository at this point in the history
  • Loading branch information
maldoinc committed Oct 19, 2024
1 parent da3092b commit b740d17
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 @@ -39,13 +39,13 @@
T = TypeVar("T")


@dataclass(slots=True, kw_only=True, frozen=True)
@dataclass(kw_only=True, frozen=True)
class _CreationResult:
instance: Any
exit_stack: list[GeneratorType[Any, Any, Any]]


@dataclass(slots=True, kw_only=True, frozen=True)
@dataclass(kw_only=True, frozen=True)
class _InjectionResult:
args: dict[str, Any]
exit_stack: list[GeneratorType[Any, Any, Any]]
Expand Down

0 comments on commit b740d17

Please sign in to comment.