Files
openide/python/testData/quickFixes/PyRemoveCallQuickFixTest/decorator.py
lada.gagina ad5b55918e Revert tests with over-inferring LiteralString
(cherry picked from commit 0c92e1c64362e2834b01b4e0bcbcedfefe4febe0)

IJ-MR-112631

GitOrigin-RevId: 233abfde16b19e96c5bc39c77eef1a240aa1b3e8
2023-11-07 22:10:23 +00:00

13 lines
120 B
Python

a = ""
def b(c):
pass
<warning descr="'str' object is not callable">@<caret>a</warning>
@b
def foo():
pass