Skip to content

Commit 6a32a90

Browse files
stevenmantonSteven Anton
authored andcommitted
fix: Fix type annotations (aws#3415)
Co-authored-by: Steven Anton <[email protected]>
1 parent 39fe771 commit 6a32a90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sagemaker/spark/processing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -700,8 +700,8 @@ class PySparkProcessor(_SparkProcessorBase):
700700
def __init__(
701701
self,
702702
role: str,
703-
instance_type: Union[int, PipelineVariable],
704-
instance_count: Union[str, PipelineVariable],
703+
instance_type: Union[str, PipelineVariable],
704+
instance_count: Union[int, PipelineVariable],
705705
framework_version: Optional[str] = None,
706706
py_version: Optional[str] = None,
707707
container_version: Optional[str] = None,

0 commit comments

Comments
 (0)