1
0
forked from VimPlug/jedi

Get all tests working except usage tests

This commit is contained in:
Dave Halter
2019-08-21 00:47:44 +02:00
parent 85f8f2a764
commit 8a2b7f18cd
5 changed files with 11 additions and 7 deletions

View File

@@ -583,7 +583,7 @@ class DataclassWrapper(ValueWrapper, ClassMixin):
param_names = []
for cls in reversed(list(self.py__mro__())):
if isinstance(cls, DataclassWrapper):
filter_ = cls.get_global_filter()
filter_ = cls.as_context().get_global_filter()
# .values ordering is not guaranteed, at least not in
# Python < 3.6, when dicts where not ordered, which is an
# implementation detail anyway.