summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-06-02 18:27:01 +0200
committerGitHub <noreply@github.com>2021-06-02 18:27:01 +0200
commit9361fa0630ce920081b57865be7882a39e9da1e3 (patch)
treee76160edf47495eb2b6f0a00aaf40df786612dbe /ChangeLog
parentec78b15c76af6eb41964f624769d115c5796112e (diff)
downloadpylint-git-9361fa0630ce920081b57865be7882a39e9da1e3.tar.gz
Update name for consider-using-namedtuple to include dataclass (#4536)
* Change msg name to include dataclass * Update pylint ignores * Update tests
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d1d7e736c..9f4bd8462 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -124,8 +124,8 @@ modules are added.
Closes #4509
Closes PyCQA/astroid#999
-* New checker ``consider-using-namedtuple``. Emitted when dictionary values can be replaced
- by namedtuples.
+* New checker ``consider-using-namedtuple-or-dataclass``. Emitted when dictionary values
+ can be replaced by namedtuples or dataclass instances.
* New checker ``invalid-all-format``. Emitted when ``__all__`` has an invalid format,
i.e. isn't a ``tuple`` or ``list``.