Skip to content

Commit

Permalink
Merge pull request #28 from mkouhei/fixes-pylint-violation
Browse files Browse the repository at this point in the history
Fixes pylint violation useless-super-delegation.
  • Loading branch information
mkouhei committed Apr 22, 2017
2 parents da9e55a + ccc924e commit a497e08
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions swiftsc/exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ class Error(Exception):
Child classes should define an status code, title, and message_format.
"""

def __init__(self, message=None):
"""constructor of Error."""
super(Error, self).__init__(message)
pass


class ValidationError(Error):
Expand Down

0 comments on commit a497e08

Please sign in to comment.