Skip to content

Commit

Permalink
Revert "Use frozen dataclass"
Browse files Browse the repository at this point in the history
This reverts commit 8f2e79e.
  • Loading branch information
ricardobranco777 committed Jul 31, 2024
1 parent 8f2e79e commit f8de97e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def xgetitem(*keys: str | int) -> Callable[[Any], Any]:
return lambda item: reduce(getitem, keys, item)


@dataclass(frozen=True, kw_only=True)
@dataclass(kw_only=True)
class Issue: # pylint: disable=too-many-instance-attributes
"""
Issue class
Expand Down

0 comments on commit f8de97e

Please sign in to comment.