We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11444a6 commit 98a5826Copy full SHA for 98a5826
1 file changed
deform/exception.py
@@ -25,7 +25,7 @@ class ValidationFailure(Exception):
25
"""
26
27
def __init__(self, field, cstruct, error):
28
- Exception.__init__(self)
+ super().__init__(field, cstruct, error)
29
self.field = field
30
self.cstruct = cstruct
31
self.error = error
0 commit comments