We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c31f15 commit 1279bb0Copy full SHA for 1279bb0
ml_service/util/create_scoring_image.py
@@ -51,12 +51,11 @@
51
if image.creation_state != "Succeeded":
52
raise Exception("Image creation status: {image.creation_state}")
53
54
-print(
55
- "{}(v.{} [{}]) stored at {} with build log {}".format(
56
- image.name,
57
- image.version,
58
- image.creation_state,
59
- image.image_location,
60
- image.image_build_log_uri,
61
- )
+print("{}(v.{} [{}]) stored at {} with build log {}".format(
+ image.name,
+ image.version,
+ image.creation_state,
+ image.image_location,
+ image.image_build_log_uri,
+)
62
)
0 commit comments