1
0
forked from VimPlug/jedi

Fix generator issues for typing

This commit is contained in:
Dave Halter
2019-06-08 01:50:38 +02:00
parent 26951f5c18
commit eef02e5c56
4 changed files with 13 additions and 4 deletions

View File

@@ -76,7 +76,7 @@ class GeneratorBase(LazyAttributeOverwrite, IterableMixin):
@property
def name(self):
return compiled.CompiledContextName(self, 'generator')
return compiled.CompiledContextName(self, 'Generator')
class Generator(GeneratorBase):