Skip to content

Commit

Permalink
Add comment making behavior more obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLindblad committed Jan 27, 2025
1 parent 56afd3a commit 796c442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/aryn-sdk/aryn_sdk/partition/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def _convert_sync_to_async_url(url: str, *, prefix: str, include_rest_of_url: bo
if parsed_url.path.startswith("/v1/async/submit"):
return url
ary = list(parsed_url)
ary[2] = f"/v1/async{prefix}{parsed_url.path[3:] if include_rest_of_url else ''}"
ary[2] = f"/v1/async{prefix}{parsed_url.path[3:] if include_rest_of_url else ''}" # path
return urlunparse(ary)


Expand Down

0 comments on commit 796c442

Please sign in to comment.