PY-34818 Suggest auto importing symbols referenced in f-strings

GitOrigin-RevId: 433bb6a1247620e994b103d0a5348b23ed642813
This commit is contained in:
Mikhail Golubev
2019-12-21 20:46:18 +03:00
committed by intellij-monorepo-bot
parent de78f2ee5d
commit 0fbb674a91
5 changed files with 16 additions and 4 deletions

View File

@@ -0,0 +1 @@
print(f'{<error descr="Unresolved reference 'lib'">l<caret>ib</error>}')

View File

@@ -0,0 +1,3 @@
import lib
print(f'{lib}')