diff options
author | Marc Mueller <30130371+cdce8p@users.noreply.github.com> | 2021-03-05 15:24:54 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-06 13:59:56 +0100 |
commit | a7d37d22041bdf7a28631f42ea86a4a06ba35e24 (patch) | |
tree | 0bfc8c68d1c57eb969213ff0060deef2ee8c4055 /tests | |
parent | c85d202a235a0b353c0f2bec3f02760f3643e52c (diff) | |
download | pylint-git-a7d37d22041bdf7a28631f42ea86a4a06ba35e24.tar.gz |
Exempt TypedDict from too-few-public-methods check
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functional/t/typedDict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/t/typedDict.py b/tests/functional/t/typedDict.py index 9fdcee2ee..912a4eae6 100644 --- a/tests/functional/t/typedDict.py +++ b/tests/functional/t/typedDict.py @@ -1,5 +1,5 @@ """Test typing.TypedDict""" -# pylint: disable=invalid-name,missing-class-docstring,too-few-public-methods +# pylint: disable=invalid-name,missing-class-docstring import typing from typing import TypedDict |