Skip to content

Commit 418607a

Browse files
haru-256copybara-github
authored andcommitted
chore: Change command parameter type to Optional[Sequence[str]] in CustomContainerTrainingJob
COPYBARA_INTEGRATE_REVIEW=#5162 from haru-256:chore/fix-type-error 3628505 PiperOrigin-RevId: 747533313
1 parent d442c42 commit 418607a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/aiplatform/training_jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4304,7 +4304,7 @@ def __init__(
43044304
# TODO(b/223262536): Make display_name parameter fully optional in next major release
43054305
display_name: str,
43064306
container_uri: str,
4307-
command: Sequence[str] = None,
4307+
command: Optional[Sequence[str]] = None,
43084308
model_serving_container_image_uri: Optional[str] = None,
43094309
model_serving_container_predict_route: Optional[str] = None,
43104310
model_serving_container_health_route: Optional[str] = None,

0 commit comments

Comments
 (0)