1
0
forked from VimPlug/jedi

add multiple values for keyword type error detection

This commit is contained in:
Dave Halter
2014-05-26 18:40:02 +02:00
parent 720907531b
commit f3e986a285
4 changed files with 19 additions and 11 deletions

View File

@@ -15,6 +15,7 @@ CODES = {
'type-error-too-many-arguments': (5, TypeError, None),
'type-error-too-few-arguments': (6, TypeError, None),
'type-error-keyword-argument': (7, TypeError, None),
'type-error-multiple-values': (8, TypeError, None),
}