Skip to content

Commit

Permalink
fix: invalid value for --max-num-levels when using CLI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheharyar570 authored and alwayslove2013 committed Dec 2, 2024
1 parent 340eb41 commit 4bb2994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vectordb_bench/backend/clients/alloydb/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class AlloyDBScaNNTypedDict(AlloyDBTypedDict):
int,
click.option(
"--max-num-levels",
type=click.Choice([1, 2]),
type=click.Choice(["1", "2"]),
help="Maximum number of levels",
default=1
)
Expand Down

0 comments on commit 4bb2994

Please sign in to comment.