Skip to content

Commit

Permalink
Skip emitting unused-argument for the parameter to process_module()
Browse files Browse the repository at this point in the history
  • Loading branch information
PCManticore committed Mar 8, 2019
1 parent 4f25b4e commit fb6d444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/checkers/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ def new_line(self, tokens, line_end, line_start):
self._lines[line_num] = line.split("\n")[0]
self.check_lines(line, line_num)

def process_module(self, module):
def process_module(self, _module):
self._keywords_with_parens = set()

def _check_keyword_parentheses(self, tokens, start):
Expand Down

0 comments on commit fb6d444

Please sign in to comment.