summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2021-12-11 03:10:28 -0500
committerGitHub <noreply@github.com>2021-12-11 09:10:28 +0100
commitbd55b27d41542e3ca1f031f986b6151f6cac457f (patch)
tree4600946172fe87d234cae6cf784ee66734cf3362 /pylintrc
parenta51a5486ebff7543ae4fb6943fac2558947fa974 (diff)
downloadpylint-git-bd55b27d41542e3ca1f031f986b6151f6cac457f.tar.gz
Fix #4761: Emit `used-before-assignment` where single assignment only made in except blocks (#5402)
Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index a38a35aed..7e983510e 100644
--- a/pylintrc
+++ b/pylintrc
@@ -332,7 +332,7 @@ max-locals=25
max-returns=11
# Maximum number of branch for function / method body
-max-branches=26
+max-branches=27
# Maximum number of statements in function / method body
max-statements=100