Open jdkandersson opened 1 year ago
Currently, *args and **kwargs are documented by their variable name:
def foo(*args, **kwargs): """"... Args: args: ... kwargs: ... """
Also allow for the following:
def foo(*args, **kwargs): """"... Args: *args: ... **kwargs: ... """
Currently, *args and **kwargs are documented by their variable name:
Also allow for the following: