Skip to content

Commit

Permalink
Use frozen dataclass
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Jul 31, 2024
1 parent 53fab11 commit 8f2e79e
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(kw_only=True)
@dataclass(frozen=True, kw_only=True)
class Issue: # pylint: disable=too-many-instance-attributes
"""
Issue class
Expand Down

0 comments on commit 8f2e79e

Please sign in to comment.