Skip to content

Commit 7f13df0

Browse files
authored
Remove unused arg job_detail for EstimatorBase.attach() (aws#210)
1 parent 0bf7e12 commit 7f13df0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ CHANGELOG
77

88
* bug-fix: Remove __all__ and add noqa in __init__
99
* bug-fix: Estimators: Change max_iterations hyperparameter key for KMeans
10+
* bug-fix: Estimators: Remove unused argument job_details for ``EstimatorBase.attach()``
1011

1112
1.3.0
1213
=====

src/sagemaker/estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def _from_training_job(cls, init_params, hyperparameters, image, sagemaker_sessi
183183
raise NotImplementedError()
184184

185185
@classmethod
186-
def attach(cls, training_job_name, sagemaker_session=None, job_details=None):
186+
def attach(cls, training_job_name, sagemaker_session=None):
187187
"""Attach to an existing training job.
188188
189189
Create an Estimator bound to an existing training job, each subclass is responsible to implement

0 commit comments

Comments
 (0)