diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-30 23:35:02 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-31 00:01:42 +0200 |
commit | 9da9c6c5e9c7005bf6c26bb6be690e7b684d69ce (patch) | |
tree | 81a03d29927e3e5d4ba1d31204f069b0c71c19e3 /pylint/checkers/raw_metrics.py | |
parent | 1a960b9d5135cc05a3f17f82444222f036c69797 (diff) | |
download | pylint-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.py | 2 |
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),) |