1
0
forked from VimPlug/jedi

simple generator static analysis subscript check

This commit is contained in:
Dave Halter
2014-05-12 16:03:41 +02:00
parent b6ec589997
commit 64af9524b7
3 changed files with 12 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ from jedi import debug
CODES = {
'attribute-error': (1, 'Potential AttributeError.'),
'import-error': (2, 'Potential ImportError.'),
'type-error-generator': (3, "TypeError: 'generator' object is not subscriptable."),
}