Skip to content

Commit 8d91406

Browse files
Fix parenthesis causing black-check fail
1 parent 51f275a commit 8d91406

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,7 @@ def _pack_and_upload_code(
16791679
)
16801680

16811681
# Upload the bootstrapping code as s3://.../jobname/source/runproc.sh.
1682-
entrypoint_s3_uri = estimator.uploaded_code.s3_prefix.rsplit('/', 1)[0] + '/runproc.sh'
1682+
entrypoint_s3_uri = estimator.uploaded_code.s3_prefix.rsplit("/", 1)[0] + "/runproc.sh"
16831683

16841684
script = estimator.uploaded_code.script_name
16851685
s3_runproc_sh = S3Uploader.upload_string_as_file_body(

0 commit comments

Comments
 (0)