mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Test import insertion for type annotations
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
def get_dict<caret>():
|
||||
return {1: '1'}
|
||||
@@ -0,0 +1,4 @@
|
||||
from typing import Dict
|
||||
|
||||
def get_dict() -> Dict[int, str]:
|
||||
return {1: '1'}
|
||||
Reference in New Issue
Block a user