1
0
forked from VimPlug/jedi

Replace some isinstance checks in the parser tree with .type checks.

This commit is contained in:
Dave Halter
2015-02-09 12:27:29 +01:00
parent a9a3387cb0
commit a095f8d9e0
4 changed files with 17 additions and 13 deletions

View File

@@ -156,7 +156,7 @@ def get_module_names(module, all_scopes):
return chain.from_iterable(dct.values())
class FakeImport(pr.Import):
class FakeImport(pr.ImportName):
def __init__(self, name, parent, level=0):
super(FakeImport, self).__init__([])
self.parent = parent