1
0
forked from VimPlug/jedi

1 + '1' TypeErrors are now detected, but not shown in the right place

This commit is contained in:
Dave Halter
2014-07-22 10:44:56 +02:00
parent 52bbedd4a8
commit 50ceef6e09
2 changed files with 11 additions and 2 deletions

View File

@@ -17,7 +17,8 @@ CODES = {
'type-error-keyword-argument': (7, TypeError, None),
'type-error-multiple-values': (8, TypeError, None),
'type-error-star-star': (9, TypeError, None),
'type-error-star': (9, TypeError, None),
'type-error-star': (10, TypeError, None),
'type-error-operation': (11, TypeError, None),
}