Skip to content

Commit

Permalink
🐛 CheckpointSuite no longer kw_only
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jun 9, 2024
1 parent 66408f5 commit 2804a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ozi/spec/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Checkpoint(Default):
version: str = '0.4.0'


@dataclass(kw_only=True, frozen=True, eq=True)
@dataclass(slots=True, frozen=True, eq=True)
class CheckpointSuite(Default):
"""OZI checkpoint base class."""

Expand Down

0 comments on commit 2804a02

Please sign in to comment.