summaryrefslogtreecommitdiffstats
path: root/make-lint
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2015-12-17 16:07:10 +0100
committerMartin Basti <mbasti@redhat.com>2016-01-14 13:15:26 +0100
commit2320be18a34628fa6d05ffc42e695da5dd6dab6e (patch)
tree0362878e96249442f90a8ab09ead6bdc3c3b7354 /make-lint
parent267bad10a81f101db8b645abf01b2cdd62c91775 (diff)
downloadfreeipa-2320be18a34628fa6d05ffc42e695da5dd6dab6e.tar.gz
freeipa-2320be18a34628fa6d05ffc42e695da5dd6dab6e.tar.xz
freeipa-2320be18a34628fa6d05ffc42e695da5dd6dab6e.zip
Enable pylint unbalanced-tuple-unpacking check
Enables check and fixes one issue. get_entries can be replaced by get_entry, filter is not needed because check of 'originfilter' attribute is done later. Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'make-lint')
-rwxr-xr-xmake-lint1
1 files changed, 0 insertions, 1 deletions
diff --git a/make-lint b/make-lint
index b1780f94a..df829580b 100755
--- a/make-lint
+++ b/make-lint
@@ -279,7 +279,6 @@ def main():
linter.set_option('disable', 'unused-argument')
linter.set_option('disable', 'unused-variable')
linter.set_option('disable', 'useless-else-on-loop')
- linter.set_option('disable', 'unbalanced-tuple-unpacking')
linter.set_option('enable', 'C')
linter.set_option('disable', 'bad-classmethod-argument')