We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description when a certain exception is raised on multiple lines within the function, the exception will occur multiple times in the docstring.
Versions:
Original Code
def TestFxn(arg0: int, arg1: str) -> str: if len(arg1) * arg0 > 1000: raise ValueError("bad idea... too many chars") if not arg1: raise ValueError("empty string") return arg1 * arg0
Expected Result:
def TestFxn(arg0: int, arg1: str) -> str: """_summary_ Args: arg0 (int): _description_ arg1 (str): _description_ Raises: ValueError: _description_ Returns: str: _description_ """
Actual Result:
def TestFxn(arg0: int, arg1: str) -> str: """_summary_ Args: arg0 (int): _description_ arg1 (str): _description_ Raises: ValueError: _description_ ValueError: _description_ Returns: str: _description_ """
The text was updated successfully, but these errors were encountered:
this could be done with a lambda {{#skipDuplicates}} for example...
Sorry, something went wrong.
No branches or pull requests
Description
when a certain exception is raised on multiple lines within the function, the exception will occur multiple times in the docstring.
Versions:
Original Code
Expected Result:
Actual Result:
The text was updated successfully, but these errors were encountered: