1
0
forked from VimPlug/jedi

first version of too many arguments detection

This commit is contained in:
Dave Halter
2014-05-21 12:30:51 +02:00
parent a252d825f2
commit 4ecc150d85
3 changed files with 28 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ CODES = {
'name-error': (2, NameError, 'Potential NameError.'),
'import-error': (3, ImportError, 'Potential ImportError.'),
'type-error-generator': (4, TypeError, "TypeError: 'generator' object is not subscriptable."),
'type-error-too-many-params': (4, TypeError, "TypeError: 'generator' object is not subscriptable."),
}