From f0d980bedfe3af6d96454f1327372612abe93201 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 1 Feb 2024 22:24:34 +0100 Subject: disable false positive "unsubscriptable" lint --- pylint.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pylint.toml b/pylint.toml index b6dbaef..d758ecf 100644 --- a/pylint.toml +++ b/pylint.toml @@ -355,6 +355,9 @@ disable = [ "deprecated-pragma", "use-symbolic-message-instead", "unnecessary-lambda-assignment", + # Seems to be a false positive: + # https://github.com/pylint-dev/pylint/issues/1498#issuecomment-1888928977 + "unsubscriptable-object", ] # Enable the message, report, category or checker with the given id(s). You can -- cgit v1.2.3