mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
Python 2 compatible super()
This commit is contained in:
@@ -124,7 +124,7 @@ class TypeVar(BaseTypingValue):
|
||||
|
||||
class TypeWrapper(ValueWrapper):
|
||||
def __init__(self, wrapped_value, original_value):
|
||||
super().__init__(wrapped_value)
|
||||
super(TypeWrapper, self).__init__(wrapped_value)
|
||||
self._original_value = original_value
|
||||
|
||||
def execute_annotation(self):
|
||||
|
||||
Reference in New Issue
Block a user