summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorCarl Baldwin <carl.baldwin@hp.com>2015-01-16 23:40:13 +0000
committerCarl Baldwin <carl.baldwin@hp.com>2015-01-16 23:40:13 +0000
commit4906e0cf8e9123424d8d6e794a704e3e18f24689 (patch)
tree97c2cfe73d01c1d7298db38505fc35a918061568 /.pylintrc
parentb3db517a521cf1d4f2854101204702efda66ad9d (diff)
downloadneutron-4906e0cf8e9123424d8d6e794a704e3e18f24689.tar.gz
Disable unbalanced-tuple-unpacking
This check seems to have changed and started to break in Neutron. Disabling it is one way we could get back to good. Change-Id: I6d06d43cb2e78501cd69fcb3940694d04d936fa8 Closes-bug: #1411865
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc1
1 files changed, 1 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
index ad9c8211bc..e54a281e1f 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -50,6 +50,7 @@ disable=
signature-differs,
star-args,
super-init-not-called,
+ unbalanced-tuple-unpacking,
unnecessary-lambda,
unnecessary-pass,
unpacking-non-sequence,