Skip to content
Snippets Groups Projects
Commit 77f0710c authored by Moul's avatar Moul
Browse files
parent 0ef76d80
No related branches found
No related tags found
1 merge request!189Define custom exceptions to support new Pylint v2.16 rule: broad-exception-raised (#200)
Pipeline #32679 waiting for manual action
...@@ -209,7 +209,7 @@ class Block(Document): ...@@ -209,7 +209,7 @@ class Block(Document):
""" """
super().__init__(version, currency) super().__init__(version, currency)
documents_versions = max( documents_versions = max( # pylint: disable=nested-min-max
max([1] + [i.version for i in identities]), max([1] + [i.version for i in identities]),
max([1] + [m.version for m in actives + leavers + joiners]), max([1] + [m.version for m in actives + leavers + joiners]),
max([1] + [r.version for r in revokations]), max([1] + [r.version for r in revokations]),
......
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