Skip to content

Commit

Permalink
Corrected comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWilkie committed Jul 16, 2024
1 parent 2d15fd3 commit fd238ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions darwin/dataset/remote_dataset_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ def register_single_slotted(
item["extract_views"] = "true"
items.append(item)

# Do not register more than 10 items in a single request
# Do not register more than 100 items in a single request
chunk_size = 100
chunked_items = chunk_items(items, chunk_size)
print(f"Registering {len(items)} items in chunks of {chunk_size} items...")
Expand Down Expand Up @@ -800,7 +800,7 @@ def register_multi_slotted(
}
)

# Do not register more than 500 items in a single request
# Do not register more than 100 items in a single request
chunk_size = 100
chunked_items = chunk_items(items, chunk_size)
print(f"Registering {len(items)} items in chunks of {chunk_size} items...")
Expand Down

0 comments on commit fd238ce

Please sign in to comment.