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