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
We are currently using pydocstyle in our precommit. This is deprecated PyCQA/pydocstyle#658 and, more importantly, has a number of issues with @overload. PyCQA/pydocstyle#613, PyCQA/pydocstyle#525, PyCQA/pydocstyle#635
@overload
For example, I fail to make something like this pass our precommit
@overload __add__(self,other:float)-> float: ... @overload __add__(self,other:int)-> int: ... def __add__(self,other:int|float)->int|float ''' Add an int or float. '''
which I would like to use..
The text was updated successfully, but these errors were encountered:
Also, I would vote to ignore D105 Docstrings on magic methods in magic methods are not that useful in most cases
Sorry, something went wrong.
Is this solved by #193 ?
No branches or pull requests
We are currently using pydocstyle in our precommit.
This is deprecated PyCQA/pydocstyle#658 and, more importantly, has a number of issues with
@overload
. PyCQA/pydocstyle#613, PyCQA/pydocstyle#525, PyCQA/pydocstyle#635For example, I fail to make something like this pass our precommit
which I would like to use..
The text was updated successfully, but these errors were encountered: