summaryrefslogtreecommitdiff
path: root/pylint/checkers/raw_metrics.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-30 23:35:02 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-31 00:01:42 +0200
commit9da9c6c5e9c7005bf6c26bb6be690e7b684d69ce (patch)
tree81a03d29927e3e5d4ba1d31204f069b0c71c19e3 /pylint/checkers/raw_metrics.py
parent1a960b9d5135cc05a3f17f82444222f036c69797 (diff)
downloadpylint-git-9da9c6c5e9c7005bf6c26bb6be690e7b684d69ce.tar.gz
Refactor from old style typing to new style typing
Diffstat (limited to 'pylint/checkers/raw_metrics.py')
-rw-r--r--pylint/checkers/raw_metrics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/raw_metrics.py b/pylint/checkers/raw_metrics.py
index da3d24821..b713c4bf6 100644
--- a/pylint/checkers/raw_metrics.py
+++ b/pylint/checkers/raw_metrics.py
@@ -53,7 +53,7 @@ class RawMetricsChecker(BaseTokenChecker):
# configuration options
options = ()
# messages
- msgs = {} # type: Any
+ msgs: Any = {}
# reports
reports = (("RP0701", "Raw metrics", report_raw_stats),)