Skip to content

Commit

Permalink
Fix new exception
Browse files Browse the repository at this point in the history
  • Loading branch information
cygnusb committed Feb 12, 2019
1 parent 4427675 commit a142940
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pypureomapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ def __init__(self):


class OmapiErrorAttributeNotFound(OmapiErrorNotFound):
"""Not found."""
def __init__(self):
OmapiError.__init__(self, "attribute not found")
"""Attribute not found."""
def __init__(self): # pylint:disable=super-init-not-called
OmapiError.__init__(self, "attribute not found") # pylint:disable=non-parent-init-called


class OutBuffer(object):
Expand Down

0 comments on commit a142940

Please sign in to comment.