We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ed0fc commit 1f6da0bCopy full SHA for 1f6da0b
knowledge_repo/app/routes/debug.py
@@ -86,7 +86,7 @@ def show_views():
86
87
methods = ','.join(rule.methods)
88
url = url_for(rule.endpoint, **options)
89
- line = unquote("{:50s} {:20s} {}".format(rule.endpoint, methods, url))
+ line = unquote(f'{rule.endpoint:50s} {methods:20s} {url}')
90
output.append(line)
91
92
return "<br />".join(sorted(output))
0 commit comments