Skip to content
Closed
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
4 changes: 2 additions & 2 deletions docs/recipes/existing-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ my_data = [
...
]

for paramters, raw_data in my_data.items():
for parameters, raw_data in my_data.items():
# First attach the trial and note the trial index
trial_index = client.attach_trial(
parameters=my_parameters,
parameters=parameters,
)

# Then complete the trial with the existing data
Expand Down