summaryrefslogtreecommitdiff
path: root/pylint/checkers/format.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-09-07 14:01:20 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-13 13:32:34 +0200
commite726eb40eabc29beacb18d174b3b75217326a7b9 (patch)
treec5766a94edbb7a842de7d6f30ff93cddc0c30e18 /pylint/checkers/format.py
parentebae36e35447f113649b87a5dd7a3e03b793605c (diff)
downloadpylint-git-e726eb40eabc29beacb18d174b3b75217326a7b9.tar.gz
Type ``process_module`` and update argument names
Diffstat (limited to 'pylint/checkers/format.py')
-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 ffd1b2169..62064b88b 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -351,7 +351,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, _node: nodes.Module) -> None:
pass
def _check_keyword_parentheses(