Skip to content

Commit

Permalink
Fix: Remove slots arg in Version dataclass since it does not exists b…
Browse files Browse the repository at this point in the history
…efore python 3.10.
  • Loading branch information
Labbeti committed Jan 11, 2024
1 parent 04858ae commit 1e9915e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aac_metrics/utils/packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _package_is_available(package_name: str) -> bool:
return False


@dataclass(init=True, repr=True, eq=True, slots=True)
@dataclass(init=True, repr=True, eq=True)
class Version:
_VERSION_FORMAT: ClassVar[str] = "{major}.{minor}.{patch}"
_VERSION_PATTERN: ClassVar[
Expand Down

0 comments on commit 1e9915e

Please sign in to comment.