Files
openide/python/testData/inspections/ChangeSignatureParametersDefaultValues.py
Semyon Proshev 9b451f9e6d Register change signature quick fix without highlighting
To not to be overlayed with highlighting for arguments
2018-01-09 14:39:23 +03:00

7 lines
152 B
Python

def func():
pass
func(<caret><warning descr="Unexpected argument">42</warning>, <warning descr="Unexpected argument">foo='spam'</warning>)
func()