Skip to content
Merged
Show file tree
Hide file tree
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 crunch/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,8 +858,8 @@ def cloud_executor(
gpu,
# ---
api.ColumnNames(
id_column_name,
moon_column_name,
id_column_name or None,
moon_column_name or None,
side_column_name or None,
input_column_name or None,
output_column_name or None,
Expand Down
4 changes: 2 additions & 2 deletions crunch/runner/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,8 +656,8 @@ def sandbox(
"number-of-features": self.number_of_features,
"gpu": self.gpu,
# ---
"id-column-name": self.column_names.id,
"moon-column-name": self.column_names.moon,
"id-column-name": self.column_names.id or "",
"moon-column-name": self.column_names.moon or "",
"side-column-name": self.column_names.side or "",
"input-column-name": self.column_names.input or "",
"output-column-name": self.column_names.output or "",
Expand Down