From fb6d44472abf78530e7a75e2ae477dda25024608 Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Fri, 8 Mar 2019 17:48:19 +0100 Subject: [PATCH] Skip emitting unused-argument for the parameter to process_module() --- pylint/checkers/format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py index d0d3ee5162..d1aa8e91bc 100644 --- a/pylint/checkers/format.py +++ b/pylint/checkers/format.py @@ -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):