Test import insertion for type annotations

This commit is contained in:
Dmitry Trofimov
2016-04-11 18:00:54 +02:00
parent c5dc25be51
commit d89a7aee1b
5 changed files with 57 additions and 19 deletions
@@ -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'}