Skip to content

Commit

Permalink
Feature/add run (#1444)
Browse files Browse the repository at this point in the history
  • Loading branch information
mike0sv authored Jan 22, 2025
1 parent cc2844b commit f185c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evidently/ui/workspace/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def add_run(self, project_id: STR_UUID, run: SnapshotV2, include_data: bool = Fa
if include_data:
run_from = "ws"
input_data = _default_input_data_generator(run.context)
current, reference = input_data.get_datasets()
reference, current = input_data.get_datasets()
column_mapping = input_data.column_mapping
self._upload_snapshot_datasets(project_id, snapshot, current, reference, column_mapping, run_from)

Expand Down

0 comments on commit f185c62

Please sign in to comment.