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
Meta
Its a common practice to use Meta class to set options in frameworks. e.g.:
from marshmallow import Schema, EXCLUDE class MySchema(Schema): class Meta: unknown = EXCLUDE
When calling vulture with vulture . --ignore-names=Meta, I get this error message:
vulture
vulture . --ignore-names=Meta
example.py:5: unused variable 'unknown' (60% confidence)
I imagine that an option ignore_attrs_of_classes=Meta could be added.
ignore_attrs_of_classes=Meta
The text was updated successfully, but these errors were encountered:
p2p_invalid_block
No branches or pull requests
Its a common practice to use
Meta
class to set options in frameworks. e.g.:When calling
vulture
withvulture . --ignore-names=Meta
, I get this error message:I imagine that an option
ignore_attrs_of_classes=Meta
could be added.The text was updated successfully, but these errors were encountered: