1
0
forked from VimPlug/jedi

Fix displaying param names for classes.

This commit is contained in:
Dave Halter
2016-12-05 18:12:23 +01:00
parent 6736b1a5ce
commit fe64df2e42
2 changed files with 18 additions and 6 deletions

View File

@@ -366,6 +366,11 @@ class SelfNameFilter(InstanceClassFilter):
if name.is_definition() and self._access_possible(name):
yield name
continue
init_execution = self.context.get_init_function()
# Hopefully we can somehow change this.
if init_execution is not None and \