1
0
forked from VimPlug/jedi

Fixed a few failing tests, that were failing, because of the qualified_names changes

This commit is contained in:
Dave Halter
2019-06-08 01:05:40 +02:00
parent bb42850d63
commit 26951f5c18
3 changed files with 3 additions and 3 deletions

View File

@@ -210,7 +210,7 @@ class ImportName(AbstractNameDefinition):
if module_names is None:
return module_names
return module_names + (self.string_name,)
return self.string_name
return (self.string_name,)
return ()
@property