Skip to content

Commit

Permalink
🐛 fix unimplemented repr in ozi.spec.base.Default
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed May 19, 2024
1 parent a865ee3 commit e7791d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ozi/spec/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def asdict(self: Self) -> dict[str, _VT]: ...
def __call__(self: Self) -> _FactoryMethod: ...


@dataclass(frozen=True)
@dataclass(frozen=True, repr=False)
class Default(_FactoryDataclass):
"""A dataclass that, when called, returns it's own default factory method."""

Expand Down

0 comments on commit e7791d0

Please sign in to comment.