Skip to content
Snippets Groups Projects
Commit 76622c17 authored by Vincent Texier's avatar Vincent Texier
Browse files

[fix] fix order of Identity class properties

parent 10fafa91
No related branches found
No related tags found
1 merge request!7750.50.0
...@@ -25,6 +25,7 @@ class Identity: ...@@ -25,6 +25,7 @@ class Identity:
converter=block_uid, default=BlockUID.empty(), cmp=False, hash=False converter=block_uid, default=BlockUID.empty(), cmp=False, hash=False
) )
membership_timestamp = attr.ib(converter=int, default=0, cmp=False, hash=False) membership_timestamp = attr.ib(converter=int, default=0, cmp=False, hash=False)
membership_written_on = attr.ib(converter=int, default=0, cmp=False, hash=False)
membership_type = attr.ib( membership_type = attr.ib(
converter=str, converter=str,
default="", default="",
...@@ -32,7 +33,6 @@ class Identity: ...@@ -32,7 +33,6 @@ class Identity:
cmp=False, cmp=False,
hash=False, hash=False,
) )
membership_written_on = attr.ib(converter=int, default=0, cmp=False, hash=False)
sentry = attr.ib(converter=bool, default=False, cmp=False, hash=False) sentry = attr.ib(converter=bool, default=False, cmp=False, hash=False)
def document(self): def document(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment