Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit c5a79b9

Browse files
author
Phil Varner
committed
fix parameter order
1 parent 4a1a58f commit c5a79b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/backends.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
async def mock_get_orders(
24-
request: Request, next: str | None, limit: int
24+
next: str | None, limit: int, request: Request
2525
) -> ResultE[tuple[list[Order], Maybe[str]]]:
2626
"""
2727
Return orders from backend. Handle pagination/limit if applicable

0 commit comments

Comments
 (0)