diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-06-14 08:25:28 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-06-14 08:45:49 +0200 |
commit | 7e0c84151781dc4879a4d8807837a8b9be03549d (patch) | |
tree | 1c515d676ac54b0214820c637242a1c3e0f3350c /astroid/arguments.py | |
parent | 7de56b0416f575b589f29ed78df66182b33f2698 (diff) | |
download | astroid-git-7e0c84151781dc4879a4d8807837a8b9be03549d.tar.gz |
Fix linting
Diffstat (limited to 'astroid/arguments.py')
-rw-r--r-- | astroid/arguments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/arguments.py b/astroid/arguments.py index 3ae8b958..bc82c688 100644 --- a/astroid/arguments.py +++ b/astroid/arguments.py @@ -227,7 +227,7 @@ class CallSite(object): kwarg.postinit([(nodes.const_factory(key), value) for key, value in kwargs.items()]) return iter((kwarg, )) - elif funcnode.args.vararg == name: + if funcnode.args.vararg == name: # It wants all the args that were passed into # the call site. if self.has_invalid_arguments(): |