Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Commit 9f4a47d

Browse files
committed
@olance review.
1 parent 14537e0 commit 9f4a47d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

alma/endpoints/orders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def fetch_all(self, limit: int = 20, starting_after: str = None, **filters):
1616
args = {"limit": str(limit)}
1717

1818
if starting_after:
19-
args["starting_after"] = str(starting_after)
19+
args["starting_after"] = starting_after
2020

2121
if filters:
2222
for attribute, value in filters.items():

alma/endpoints/payments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def create(self, data):
2121
def fetch_all(self, limit: int = 20, states: list = None, starting_after: str = None):
2222
args = {"limit": str(limit)}
2323
if starting_after:
24-
args["starting_after"] = str(starting_after)
24+
args["starting_after"] = starting_after
2525
if states:
2626
args["state"] = ",".join(states)
2727

0 commit comments

Comments
 (0)