Skip to content

Commit f087904

Browse files
committed
just some log output cleanup
1 parent c38adba commit f087904

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/workbench/core/artifacts/endpoint_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -993,9 +993,9 @@ def set_input(self, input: str, force=False):
993993
self.upsert_workbench_meta({"workbench_input": input})
994994

995995
def delete(self):
996-
""" "Delete an existing Endpoint: Underlying Models, Configuration, and Endpoint"""
996+
"""Delete an existing Endpoint: Underlying Models, Configuration, and Endpoint"""
997997
if not self.exists():
998-
self.log.warning(f"Trying to delete an Model that doesn't exist: {self.name}")
998+
self.log.warning(f"Trying to delete an Endpoint that doesn't exist: {self.name}")
999999

10001000
# Remove this endpoint from the list of registered endpoints
10011001
self.log.info(f"Removing {self.name} from the list of registered endpoints...")

src/workbench/core/artifacts/model_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ def publish_prox_model(self, prox_model_name: str = None, track_columns: list =
899899
def delete(self):
900900
"""Delete the Model Packages and the Model Group"""
901901
if not self.exists():
902-
self.log.warning(f"Trying to delete an Model that doesn't exist: {self.name}")
902+
self.log.warning(f"Trying to delete a Model that doesn't exist: {self.name}")
903903

904904
# Call the Class Method to delete the Model Group
905905
ModelCore.managed_delete(model_group_name=self.name)

0 commit comments

Comments
 (0)