Skip to content

Commit

Permalink
🎨 Update start/count keywords to offset/limit
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <[email protected]>
  • Loading branch information
ff137 committed Nov 30, 2024
1 parent 5cc8805 commit 3c16aef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions acapy_agent/anoncreds/models/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ async def get_requested_creds_from_proof_request_preview(
credentials = await holder.get_credentials_for_presentation_request_by_referent(
presentation_request=proof_request,
referents=(referent,),
start=0,
count=100,
offset=0,
limit=100,
)
if not credentials:
raise ValueError(_get_value_error_msg(proof_request, referent))
Expand All @@ -61,8 +61,8 @@ async def get_requested_creds_from_proof_request_preview(
credentials = await holder.get_credentials_for_presentation_request_by_referent(
presentation_request=proof_request,
referents=(referent,),
start=0,
count=100,
offset=0,
limit=100,
)
if not credentials:
raise ValueError(_get_value_error_msg(proof_request, referent))
Expand Down

0 comments on commit 3c16aef

Please sign in to comment.