Skip to content

Commit 8211ee7

Browse files
author
Jaya Kasiraj
committed
fix: set job_name to None when initializing TrainingStep
1 parent 2c7388c commit 8211ee7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/sagemaker/workflow/steps.py

+2
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,7 @@ def __init__(
464464
self.step_args = step_args
465465
self.estimator = estimator
466466
self.inputs = inputs
467+
self.job_name = None
467468

468469
self._properties = Properties(
469470
step_name=name, step=self, shape_name="DescribeTrainingJobResponse"
@@ -492,6 +493,7 @@ def __init__(
492493
DeprecationWarning,
493494
)
494495

496+
495497
@property
496498
def arguments(self) -> RequestType:
497499
"""The arguments dictionary that is used to call `create_training_job`.

0 commit comments

Comments
 (0)