Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 committed Nov 6, 2024
1 parent f23d82a commit 2da1af1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pay-api/src/pay_api/services/paybc_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,14 @@ def _get_receipt_by_number(
):
"""Get receipt details by receipt number."""
receipt_url = receipt_url + f"{receipt_number}/"
return self.get(receipt_url, access_token, AuthHeaderType.BEARER, ContentType.JSON, True, additional_headers={"Pay-Connector": current_app.config.get("PAY_CONNECTOR_SECRET")},).json()
return self.get(
receipt_url,
access_token,
AuthHeaderType.BEARER,
ContentType.JSON,
True,
additional_headers={"Pay-Connector": current_app.config.get("PAY_CONNECTOR_SECRET")},
).json()

def process_cfs_refund(
self,
Expand Down

0 comments on commit 2da1af1

Please sign in to comment.