1
0
forked from VimPlug/jedi
This commit is contained in:
Dave Halter
2018-09-08 17:04:07 +02:00
parent 928e80c9e9
commit eac8cfe63d

View File

@@ -99,7 +99,7 @@ def py__mro__(context):
debug.warning('Super class of %s is not a class: %s', context, cls)
else:
add(cls)
for cls_new in py__mro__(context):
for cls_new in py__mro__(cls):
add(cls_new)
return tuple(mro)