summaryrefslogtreecommitdiff
path: root/astroid/protocols.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-06-15 11:02:46 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-06-15 11:02:46 +0200
commit6b95932e6866d044a9b990e9017160afb75e0f8a (patch)
tree6a32b3d9738479e190f698c1db31f58da612e78c /astroid/protocols.py
parent7203436c77efc2c1d363b49b5dd4542478a40d2c (diff)
downloadastroid-git-6b95932e6866d044a9b990e9017160afb75e0f8a.tar.gz
Disable too-many-* for this function
Diffstat (limited to 'astroid/protocols.py')
-rw-r--r--astroid/protocols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/protocols.py b/astroid/protocols.py
index 9ebeb92a..2cd1e9d8 100644
--- a/astroid/protocols.py
+++ b/astroid/protocols.py
@@ -549,7 +549,7 @@ def starred_assigned_stmts(self, node=None, context=None, asspath=None):
context: TODO
asspath: TODO
"""
-
+ # pylint: disable=too-many-locals,too-many-branches,too-many-statements
def _determine_starred_iteration_lookups(starred, target, lookups):
# Determine the lookups for the rhs of the iteration
itered = target.itered()