File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
tests/unit/sagemaker/experiments Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -655,7 +655,9 @@ def test_log_multiple_input_artifacts(run_obj):
655655 run_obj .log_file (
656656 file_path , "name" + str (index ), "whizz/bang" + str (index ), is_output = False
657657 )
658- run_obj ._artifact_uploader .upload_artifact .assert_called_with (file_path , extra_args = None )
658+ run_obj ._artifact_uploader .upload_artifact .assert_called_with (
659+ file_path , extra_args = None
660+ )
659661
660662 run_obj ._artifact_uploader .upload_artifact .return_value = (
661663 "s3uri_value" ,
@@ -680,7 +682,9 @@ def test_log_multiple_output_artifacts(run_obj):
680682 "etag_value" + str (index ),
681683 )
682684 run_obj .log_file (file_path , "name" + str (index ), "whizz/bang" + str (index ))
683- run_obj ._artifact_uploader .upload_artifact .assert_called_with (file_path , extra_args = None )
685+ run_obj ._artifact_uploader .upload_artifact .assert_called_with (
686+ file_path , extra_args = None
687+ )
684688
685689 run_obj ._artifact_uploader .upload_artifact .return_value = (
686690 "s3uri_value" ,
You can’t perform that action at this time.
0 commit comments