Skip to content

Commit c1955db

Browse files
fix pylint issue
1 parent 2083bac commit c1955db

File tree

1 file changed

+1
-1
lines changed
  • src/sagemaker/tensorflow/training_compiler

1 file changed

+1
-1
lines changed

src/sagemaker/tensorflow/training_compiler/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def validate(cls, estimator):
103103
cls.MIN_SUPPORTED_VERSION, estimator.framework_version
104104
)
105105
raise ValueError(error_helper_string)
106-
elif Version(estimator.framework_version) in SpecifierSet(
106+
if Version(estimator.framework_version) in SpecifierSet(
107107
f"> {cls.MAX_SUPPORTED_VERSION}"
108108
):
109109
error_helper_string = (

0 commit comments

Comments
 (0)