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
Lint Checks, python, Reading/Modifying/Understanding Lint checks.
Write a lint check to avoid using string formatting using %s or .format().
Example:
Before - get_redirect_route( r'%s/can_access_classroom_page' % feconf.ACCESS_VALIDATION_HANDLER_PREFIX, access_validators.ClassroomAccessValidationHandler),
After - get_redirect_route( f"{feconf.ACCESS_VALIDATION_HANDLER_PREFIX}/can_access_classroom_page", access_validators.ClassroomAccessValidationHandler ),
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Skills covered
Lint Checks, python, Reading/Modifying/Understanding Lint checks.
Similar issues
Existing relevant pages
Example
Write a lint check to avoid using string formatting using %s or .format().
Example:
Before -
get_redirect_route( r'%s/can_access_classroom_page' % feconf.ACCESS_VALIDATION_HANDLER_PREFIX, access_validators.ClassroomAccessValidationHandler),
After -
get_redirect_route( f"{feconf.ACCESS_VALIDATION_HANDLER_PREFIX}/can_access_classroom_page", access_validators.ClassroomAccessValidationHandler ),
The text was updated successfully, but these errors were encountered: