Files
openide/python/testData/quickFixes/PyRemoveCallQuickFixTest/decorator.py
T

13 lines
120 B
Python

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