Skip to content

Commit

Permalink
Ruff and black changes
Browse files Browse the repository at this point in the history
  • Loading branch information
christianversloot committed May 2, 2023
1 parent af51e83 commit 5daed8b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ def launch(
unique_training_job_name = f"{training_job_name}-{suffix}"

# Sagemaker doesn't allow any underscores in job/experiment/trial names
sanitized_training_job_name = unique_training_job_name.replace("_", "-")
sanitized_training_job_name = unique_training_job_name.replace(
"_", "-"
)

# Construct training input object, if necessary
inputs = None
Expand Down

0 comments on commit 5daed8b

Please sign in to comment.