-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
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
pylint error for orjson #248
Comments
I've see pylint do that with extensions and I don't know of anything this project can do differently. |
Just for the sake of completeness and future readers: You can simply disable the pylint warning for the line(s) in which you use
|
Since I don't see any difference with other projects, I created pylint bug pylint-dev/pylint#9762 |
If using VSCode, suppress the warning with:
in your |
Can be fixed by whitelisting |
Or [tool.pylint]
extension-pkg-whitelist = ["orjson"] in a |
pylint
gives ano-member
error for orjson:It must be a false-positive error since orjson works like a charm. Any ideas for an easy fix?
The text was updated successfully, but these errors were encountered: