From 0a271c20a80ffed9b0ab10502a75dcb920f93677 Mon Sep 17 00:00:00 2001 From: Marcos Prieto Date: Wed, 4 Sep 2024 14:33:40 +0200 Subject: [PATCH] Ignore type checking pylint alert It's causing false positives that mypy correctly detects. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index fde806101b..640de8d84a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -117,6 +117,7 @@ disable = [ # Mostly false positives, better served by mypy "not-callable", "no-member", + "unsupported-membership-test", ]