Skip to content

Commit

Permalink
updated fstring url (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
acharles7 authored Sep 6, 2020
1 parent f189e05 commit ec169d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ build/
docs/source/rules/
coverage.xml
coverage_report.html
.idea/
2 changes: 1 addition & 1 deletion fixit/rules/use_fstring.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class UseFstringRule(CstLintRule):
MESSAGE: str = (
"Do not use printf style formatting or .format(). "
+ "Use f-string instead to be more readable and efficient. "
+ "See https://fburl.com/usefstring."
+ "See https://www.python.org/dev/peps/pep-0498/"
)

VALID = [
Expand Down

0 comments on commit ec169d8

Please sign in to comment.