Skip to content

Commit

Permalink
Minor: Change default page size in client example
Browse files Browse the repository at this point in the history
Signed-off-by: cwasicki <[email protected]>
  • Loading branch information
cwasicki committed Jun 11, 2024
1 parent d93e4bf commit a2e24fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def main() -> None:
required=True,
)
parser.add_argument("--resolution", type=int, help="Resolution", default=None)
parser.add_argument("--psize", type=int, help="Page size", default=100)
parser.add_argument("--psize", type=int, help="Page size", default=1000)
parser.add_argument(
"--display", choices=["iter", "df", "dict"], help="Display format", default="df"
)
Expand Down

0 comments on commit a2e24fb

Please sign in to comment.