diff --git a/src/cpln/api/workload.py b/src/cpln/api/workload.py index c29849c..a79c152 100644 --- a/src/cpln/api/workload.py +++ b/src/cpln/api/workload.py @@ -33,14 +33,9 @@ def get_workload_deployment(self, config: WorkloadConfig) -> dict[str, Any]: endpoint = f"gvc/{config.gvc}/workload/{config.workload_id}/deployment" - print(f"Debug: config = {config}") - print(f"Debug: client = {self.__dict__}") - if config.location: endpoint += f"/{config.location}" - print(f"Debug: endpoint = {endpoint}") - # Type cast to indicate parent class has _get method deployment_data_raw = cast(Any, self)._get(endpoint)