From a4cfc5b01013d8ab594a0ebfb75fec3b0f6eebae Mon Sep 17 00:00:00 2001 From: zetienne Date: Fri, 29 Sep 2023 17:19:06 -0700 Subject: [PATCH] .pylintrc: disable false positives from linter with python 3.6.7 --- .pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc b/.pylintrc index 666749a..92a99d6 100644 --- a/.pylintrc +++ b/.pylintrc @@ -76,6 +76,7 @@ disable=too-many-arguments, # ADDED: no sane alternative to many argumen use-maxsplit-arg, # ADDED: suggestion just clutters the code. too-many-instance-attributes, # ADDED: dumb class warning too-few-public-methods, # ADDED: dumb class warning + no-self-use, # ADDED: lots of false positives with Python 3.6ish raw-checker-failed, bad-inline-option, locally-disabled,