summaryrefslogtreecommitdiff
path: root/pylint
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-03-08 17:48:19 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2019-03-08 17:48:19 +0100
commitfb6d44472abf78530e7a75e2ae477dda25024608 (patch)
tree6f10cab3b3d214506ff4cb7a840e56aa68aba086 /pylint
parent4f25b4e67917b8e9c422e5ee3bb8705ce691a5fc (diff)
downloadpylint-git-fb6d44472abf78530e7a75e2ae477dda25024608.tar.gz
Skip emitting unused-argument for the parameter to process_module()
Diffstat (limited to 'pylint')
-rw-r--r--pylint/checkers/format.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index d0d3ee516..d1aa8e91b 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -724,7 +724,7 @@ class FormatChecker(BaseTokenChecker):
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):