Skip to content

Commit

Permalink
Fixes pylint violation useless-super-delegation.
Browse files Browse the repository at this point in the history
Signed-off-by: Kohei Maeda <mkouhei@palmtb.net>
  • Loading branch information
mkouhei committed Apr 22, 2017
1 parent da9e55a commit ccc924e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions swiftsc/exception.py
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 ccc924e

Please sign in to comment.