You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by kl...@apache.org on 2017/09/25 13:39:45 UTC

mesos git commit: Updated pylint to increase the maximum number of branches in a function.

Repository: mesos
Updated Branches:
  refs/heads/master 84a8ff1a4 -> d75fba934


Updated pylint to increase the maximum number of branches in a function.

Without this change, pylint will complain when a function is checking
for too many errors in the flags or configuration file.

Review: https://reviews.apache.org/r/62544/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d75fba93
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/d75fba93
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/d75fba93

Branch: refs/heads/master
Commit: d75fba9349d65a465ecd84074ad88316a031c13b
Parents: 84a8ff1
Author: Armand Grillet <ag...@mesosphere.io>
Authored: Mon Sep 25 15:38:53 2017 +0200
Committer: Kevin Klues <kl...@gmail.com>
Committed: Mon Sep 25 15:38:53 2017 +0200

----------------------------------------------------------------------
 src/python/pylint.config | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/d75fba93/src/python/pylint.config
----------------------------------------------------------------------
diff --git a/src/python/pylint.config b/src/python/pylint.config
index c760364..781621c 100644
--- a/src/python/pylint.config
+++ b/src/python/pylint.config
@@ -17,6 +17,7 @@ max-line-length=80
 indent-string='    '
 
 [DESIGN]
+max-branches=20
 max-returns=100
 
 [EXCEPTIONS]