Skip to content

Commit

Permalink
fix select_keys
Browse files Browse the repository at this point in the history
Signed-off-by: Praneeth Bedapudi <praneeth@bpraneeth.com>
  • Loading branch information
bedapudi6788 committed Oct 27, 2024
1 parent cac6409 commit a942d2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion liteindex/query_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def search_query(

params.insert(0, sort_by_embedding.tobytes())
else:
select_columns = ("integer_id", "id", "updated_at") + select_columns
select_columns = ("integer_id", "id", "updated_at") + tuple(select_columns)

selected_columns = (
", ".join([f'"{_}"' if isinstance(_, str) else _[0] for _ in select_columns])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
EMAIL = "praneeth@bpraneeth.com"
AUTHOR = "BEDAPUDI PRANEETH"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "0.0.3.2.dev1"
VERSION = "0.0.3.2.dev2"

# What packages are required for this module to be executed?
REQUIRED = []
Expand Down

0 comments on commit a942d2f

Please sign in to comment.