Skip to content

Commit

Permalink
convert url from object to str
Browse files Browse the repository at this point in the history
  • Loading branch information
fofmow authored Mar 11, 2023
1 parent f893856 commit 12cdae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiomoney/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def create_payment_form(self,
response = await send_request(quickpay_url, response_without_data=True, params=params)

return PaymentForm(
link_for_customer=response.url,
link_for_customer=str(response.url),
payment_label=unique_label
)

Expand Down

0 comments on commit 12cdae9

Please sign in to comment.