Skip to content
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

style: replace format() with f-strings #1667

Merged
merged 5 commits into from
Oct 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs: update examples
  • Loading branch information
sijis committed Oct 30, 2023
commit 34be17184012ca1b0848b1f80b08445718234ecc
2 changes: 1 addition & 1 deletion docs/user_guide/plugin_development/webhooks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ which contains all the details about the actual request:
@webhook(raw=True)
def test(self, request):
user_agent = request.headers.get("user-agent", "Unknown")
return "Your user-agent is {}".format(user_agent)
return f"Your user-agent is {user_agent}"


Returning custom headers and status codes
Expand Down