Skip to content
Snippets Groups Projects
Commit 480cf225 authored by inso's avatar inso
Browse files

Freeze attributes for Repositories

parent dbb69dbc
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ import attr ...@@ -2,7 +2,7 @@ import attr
from ..entities import Identity from ..entities import Identity
@attr.s @attr.s(frozen=True)
class IdentitiesRepo: class IdentitiesRepo:
"""The repository for Identities entities. """The repository for Identities entities.
""" """
......
import attr import attr
from ..entities import Identity
@attr.s(frozen=True) @attr.s(frozen=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment