Skip to content

Commit

Permalink
Fix pylint warnings for unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Aug 11, 2019
1 parent 2303df2 commit 5efa1a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tavern/_plugins/mqtt/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


class MQTTResponse(BaseResponse):
def __init__(self, client, name, expected, test_block_config):
def __init__(self, client, name, expected, test_block_config): # pylint: disable=unused-argument
super(MQTTResponse, self).__init__()

self.name = name
Expand Down
2 changes: 1 addition & 1 deletion tavern/response/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def _check_for_validate_functions(self, payload):
if "$ext" in payload:
self.validate_function = get_wrapped_response_function(payload["$ext"])

def get_parsed_response(self, response):
def get_parsed_response(self, response): # pylint: disable=unused-argument
"""Get a dict/list representation of the response
Should be overridden by plugins, but it's not _required_ because it
Expand Down

0 comments on commit 5efa1a1

Please sign in to comment.