Skip to content

Commit

Permalink
fix: Typo in upload.py (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Jan 22, 2024
1 parent a007179 commit 31d0d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/clients/redis/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def upload_batch(
if meta is not None:
for k, v in meta.items():
# This is a patch for arxiv-titles dataset where we have a list of "labels", and
# we want to index all of them under the same TAG field (whose seperator is ';').
# we want to index all of them under the same TAG field (whose separator is ';').
if k == "labels":
payload[k] = ";".join(v)
if (
Expand Down

0 comments on commit 31d0d61

Please sign in to comment.