[QUESTION] How to suppress `unused-property` error?
mdabrowski1990 opened this issue · 0 comments
mdabrowski1990 commented
The documentation specifies following errors code (just like for flake8 - https://flake8.pycqa.org/en/latest/user/error-codes.html):
- F401 -
unused-import
- F841 -
unused-variable
There is no code specified for unused-property
though. I would like to have a code so I can suppress just this error (instead of using # noqa
to suppress all errors in the line) as I use other linters as well.
I would appreciate if you could update README.md with this information.