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
Follow the instruction in README.md with vulture >= 2.1 results:
$ vulture dead_code.py dead_code.py:1: unused import 'os' (90% confidence) dead_code.py:8: unused variable 'message' (60% confidence)
It does not detect
dead_code.py:4: unused function 'greet' (60% confidence)
as expected since #219 eliminates the false positive.
I think it would be good to update the example to something that can still be reproduced.
The text was updated successfully, but these errors were encountered:
Thanks for the report, @yoichi! I'll get a fix up for this.
Sorry, something went wrong.
86ea96b
Fixed now. Thanks for the report!
No branches or pull requests
Follow the instruction in README.md with vulture >= 2.1 results:
It does not detect
as expected since #219 eliminates the false positive.
I think it would be good to update the example to something that can still be reproduced.
The text was updated successfully, but these errors were encountered: