Skip to content

Commit 6f3f57c

Browse files
committed
fix: SKLearnProcessor super() misuse
1 parent 49c584c commit 6f3f57c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/sklearn/processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(
6262
You can find additional parameters for initializing this class at
6363
:class:`~sagemaker.processing.FrameworkProcessor`.
6464
"""
65-
super(SKLearnProcessor).__init__(
65+
super(SKLearnProcessor, self).__init__(
6666
estimator_cls=self.estimator_cls,
6767
framework_version=framework_version,
6868
role=role,

0 commit comments

Comments
 (0)