Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into update-master-XXX
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Nov 19, 2024
2 parents aa756f0 + 8d03d2a commit bcf3327
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,14 @@ async def create_sds_directory(

# assemble params here
dataset_description_params = DatasetDescriptionParams.model_validate(
{"name": project_data["name"], "description": project_data["description"]},
{
"name": project_data["name"],
"description": (
""
if project_data["description"] is None
else project_data["description"]
),
},
)

params_code_description: dict[str, Any] = {}
Expand Down

0 comments on commit bcf3327

Please sign in to comment.