From fa488e25a31376b15027d82aed16c682531c91ab Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Thu, 15 Oct 2020 15:04:16 -0400 Subject: [PATCH] Added pylint exclusions. --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4426883..6052094 100644 --- a/tox.ini +++ b/tox.ini @@ -101,13 +101,15 @@ disable = mixed-indentation, no-else-raise, no-else-return, + super-with-arguments, # Can be re-factored, at some point. too-complex, too-many-boolean-expressions, too-many-branches, too-many-instance-attributes, too-many-lines, too-many-locals, - too-many-statements + too-many-statements, + unsubscriptable-object # This seems to be a local issue on the maintainer's machine only. Could be removed, perhaps, in Jan 2021. max-complexity = 15 max-args = 8 max-locals = 20