1
0
forked from VimPlug/jedi

unexpected keyword arguments detection

This commit is contained in:
Dave Halter
2014-05-23 15:34:16 +02:00
parent acd836f30d
commit d9f17beea5
3 changed files with 19 additions and 9 deletions

View File

@@ -14,6 +14,7 @@ CODES = {
'type-error-generator': (4, TypeError, "TypeError: 'generator' object is not subscriptable."),
'type-error-too-many-arguments': (5, TypeError, None),
'type-error-too-few-arguments': (6, TypeError, None),
'type-error-keyword-argument': (7, TypeError, None),
}