diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-06-15 11:02:46 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-06-15 11:02:46 +0200 |
commit | 6b95932e6866d044a9b990e9017160afb75e0f8a (patch) | |
tree | 6a32b3d9738479e190f698c1db31f58da612e78c /astroid/protocols.py | |
parent | 7203436c77efc2c1d363b49b5dd4542478a40d2c (diff) | |
download | astroid-git-6b95932e6866d044a9b990e9017160afb75e0f8a.tar.gz |
Disable too-many-* for this function
Diffstat (limited to 'astroid/protocols.py')
-rw-r--r-- | astroid/protocols.py | 2 |
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() |