From ea6979381141e204e490d91fe1782616867311e9 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Sat, 17 Sep 2022 23:57:58 +0800 Subject: [PATCH] Remove unnecessary typecheck settings for pylint --- pyproject.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 69e727f0d8c..bd412406363 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -121,9 +121,3 @@ max-module-lines=2000 # no Warning level messages displayed, use "--disable=all --enable=classes # --disable=W". disable=["duplicate-code", "import-error"] - -[tool.pylint.TYPECHECK] -# List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E1101 when accessed. Python regular -# expressions are accepted. -generated-members="pandas.*"