Skip to content

Commit 98a5826

Browse files
committed
Fix linting error
1 parent 11444a6 commit 98a5826

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deform/exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ValidationFailure(Exception):
2525
"""
2626

2727
def __init__(self, field, cstruct, error):
28-
Exception.__init__(self)
28+
super().__init__(field, cstruct, error)
2929
self.field = field
3030
self.cstruct = cstruct
3131
self.error = error

0 commit comments

Comments
 (0)