You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 3, 2023. It is now read-only.
@property methods are not used as methods. Their docstrings are used to set the description of the properties. Errors like D401 "docstring not in imperative mood" should not be applicable to methods, at least to getters, that define a @property.
IMHO, the following docstring should be accepted for x, although not in imperative mood:
@propertydefx(self):
"The X property"returnself._x
Alternatively, please classify these errors differently, so users can switch them off.