From 3f0b6448d4ee881a9b31c4c5d0b4b8653e0c82fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 20 Jul 2023 08:47:28 +0200 Subject: [PATCH] Ignore faulty pylint check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/pylint-dev/pylint/issues/8865 Signed-off-by: Juan Luis Cano Rodríguez --- kedro-datasets/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kedro-datasets/pyproject.toml b/kedro-datasets/pyproject.toml index cfa32ba2d..10dd6b941 100644 --- a/kedro-datasets/pyproject.toml +++ b/kedro-datasets/pyproject.toml @@ -43,7 +43,8 @@ unsafe-load-any-extension = false disable = [ "ungrouped-imports", "duplicate-code", - "too-many-instance-attributes" + "too-many-instance-attributes", + "too-few-public-methods", # https://github.com/pylint-dev/pylint/issues/8865 ] enable = ["useless-suppression"] [tool.pylint.refactoring]