Skip to content

Commit

Permalink
Merge pull request #988 from readthedocs/fix-fstring
Browse files Browse the repository at this point in the history
Fix f-string
  • Loading branch information
ericholscher authored Feb 13, 2025
2 parents fd61aa1 + 220279e commit 0b886ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adserver/staff/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def pay_via_paypal(self, payout):

# Make the actual payout
# https://developer.paypal.com/docs/api/payments.payouts-batch/v1/
payout_url = "{paypal_api_root}/v1/payments/payouts"
payout_url = f"{paypal_api_root}/v1/payments/payouts"
headers = {
"accept": "application/json",
"authorization": f"Bearer {access_token}",
Expand Down

0 comments on commit 0b886ca

Please sign in to comment.