1
0
forked from VimPlug/jedi

Fix some small issues

This commit is contained in:
Dave Halter
2018-09-16 14:31:55 +02:00
parent 5d9f29743c
commit 1107967f76
3 changed files with 6 additions and 7 deletions
-2
View File
@@ -452,8 +452,6 @@ def find_annotation_variables(context, node):
for subscript_node in _unpack_subscriptlist(trailer.children[1]):
type_var_set = context.eval_node(subscript_node)
for type_var in type_var_set:
from jedi.evaluate.context.typing import TypeVar
if isinstance(type_var, TypeVar) and type_var not in found:
found.append(type_var)
return found