Files
openide/python/resources/inlayProviders/Parameters/python.show.class.constructor.call.parameter.names.py
Daniil Kalinin 157b23ce53 PY-33261 Inlay parameter hints for Python method and function calls
Merge-request: IJ-MR-108471
Merged-by: Daniil Kalinin <Daniil.Kalinin@jetbrains.com>

GitOrigin-RevId: 1d9451020a755c0aaf57c12b16829f8b31291e5d
2023-06-20 05:27:45 +00:00

6 lines
129 B
Python

class Rectangle:
def __init__(self, length, width):
self.length = length
self.width = width
Rectangle(10, 4)