added remove argument quick fix to the Incorrect call arguments inspection

This commit is contained in:
Ekaterina Tuzova
2014-03-12 17:10:24 +04:00
parent 6c9c9f6dec
commit 34c32eaa91
14 changed files with 184 additions and 5 deletions
@@ -0,0 +1,7 @@
def foo(a, **args):
pass
b = {}
foo(**b, <error descr="Cannot appear past keyword arguments or *arg or **kwarg">a<caret>=1</error>)