1
0
forked from VimPlug/jedi

get_filters should always have the default search_global=False

This commit is contained in:
Dave Halter
2018-09-06 01:06:09 +02:00
parent 4730c71b16
commit a5e6f26267
9 changed files with 12 additions and 11 deletions

View File

@@ -33,7 +33,7 @@ class ImplicitNamespaceContext(Context):
self._fullname = fullname
self.paths = paths
def get_filters(self, search_global, until_position=None, origin_scope=None):
def get_filters(self, search_global=False, until_position=None, origin_scope=None):
yield DictFilter(self._sub_modules_dict())
@property