We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 643330b commit 634ee08Copy full SHA for 634ee08
src/sagemaker/session.py
@@ -8349,9 +8349,7 @@ def _logs_for_job( # noqa: C901 - suppress complexity warning for this method
8349
sagemaker_client = sagemaker_session.sagemaker_client
8350
request_end_time = time.time() + timeout if timeout else None
8351
description = _wait_until(
8352
- lambda: sagemaker_client.describe_training_job(
8353
- TrainingJobName=job_name
8354
- )
+ lambda: sagemaker_client.describe_training_job(TrainingJobName=job_name)
8355
)
8356
print(secondary_training_status_message(description, None), end="")
8357
0 commit comments