Fix mro for typing classes

This commit is contained in:
Dave Halter
2018-12-05 00:16:06 +01:00
parent 15ae767a79
commit feefde400e

View File

@@ -203,9 +203,6 @@ class _TypingClassMixin(object):
self.evaluator.builtins_module.py__getattribute__('object')
)]
def py__mro__(self):
return [self]
class TypingClassContextWithIndex(_TypingClassMixin, TypingContextWithIndex, ClassMixin):
pass