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
At the moment, running dyc diff --watch populates a fixed Docstrings for you based on the settings added.
dyc diff --watch
If the name of the argument changes, docstrings argument does not sync up with the new name and keeps the old name as is.
It would be great to have the argument auto sync with the new arguments name based on the order.
Example
def (x, y, z): """ Test docstring @param x: <None> @param y: <None> @param z: <None> """
Then an argument changes, for instance x becomes new_arg We should be getting the new_arg. That doesn't happen at the moment
x
new_arg
The text was updated successfully, but these errors were encountered:
Hi, @Zarad1993 If no one else is working on it, can I take up this task please?
Sorry, something went wrong.
No branches or pull requests
At the moment, running
dyc diff --watch
populates a fixed Docstrings for you based on the settings added.If the name of the argument changes, docstrings argument does not sync up with the new name and keeps the old name as is.
It would be great to have the argument auto sync with the new arguments name based on the order.
Example
Then an argument changes, for instance
x
becomesnew_arg
We should be getting the
new_arg
. That doesn't happen at the momentThe text was updated successfully, but these errors were encountered: