Consider the following function
def add(x: int, y: int) -> int:
""" Add two numbers
Parameters
----------
x : int
First integer
y : int
Second integer
Returns
int
Results
"""
return x + y
When I hover my mouse over add I get the following (LHS using Jedi and RHS using PyLance)
Is there a known way to get PyLance parse the docstring properly like Jedi does?
