Skip to content

Commit

Permalink
Puppet lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cygnusb committed Feb 11, 2019
1 parent e29c119 commit a15b20b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypureomapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self):
class OmapiErrorAttributeNotFound(OmapiErrorNotFound):
"""Not found."""
def __init__(self):
OmapiError.__init__(self, "not attribute not found")
OmapiErrorNotFound.__init__(self, "not attribute not found")


class OutBuffer(object):
Expand Down Expand Up @@ -949,7 +949,7 @@ def send_message(self, message, sign=True):
__all__.append("Omapi")


class Omapi(object):
class Omapi(object): # pylint:disable=too-many-public-methods
def __init__(self, hostname, port, username=None, key=None, timeout=None): # pylint:disable=too-many-arguments
"""
@type hostname: str
Expand Down

0 comments on commit a15b20b

Please sign in to comment.