Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The Transfa Python SDK provides methods and resources to the Transfa API for app

## Documentation

You can check the[Python API documentation](https://docs.transfapp.com/sdk/python/) for more details about the API.
You can check the [Python API documentation](https://docs.transfapp.com/sdk/python/) for more details about the API.

## Installation

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ requests==2.28.1
# via transfa-python-sdk (pyproject.toml)
urllib3==1.26.12
# via requests
responses==0.21.0
2 changes: 1 addition & 1 deletion transfa/api_resources/payments.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def refund(self, payment_id, **kwargs):
def status(self, payment_id):
"""
:param payment_id: Payment id.
:return: A a tuple of the status and financial status of the payment. => (status, financial_status)
:return: A tuple of the status and financial status of the payment. => (status, financial_status)
"""
response = self.retrieve(payment_id)
if response.status_code != 200:
Expand Down