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
The following error should be easily detectable:
import logging logging.info("foo %s") # missing format arg
the missing arguments should be easily detectable, like we already get too-many-format-args on
too-many-format-args
logging.warning("foo",1,2,3) # extra format args
I want pylint to issue the too-few-format-args error on the above code.
pylint
too-few-format-args
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current problem
The following error should be easily detectable:
the missing arguments should be easily detectable, like we already get
too-many-format-args
onDesired solution
I want
pylint
to issue thetoo-few-format-args
error on the above code.Additional context
No response
The text was updated successfully, but these errors were encountered: