Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1995,7 +1995,7 @@ def _dispatch_batches(
for item in item_list:
if prep_args is not None:
# Insert the given item as the first argument to be passed to the _prep function determined above
prep_args[0] = item
prep_args[0] = { "$distinct_id": item }
params = prep_function(*prep_args)
if params:
batch.append(params)
Expand Down