in modular_cli_sdk/services/credentials_manager.py [0:0]
def clean_up(self) -> str:
removed = self.ssm_client.delete_parameter(name=self.ssm_secret_name)
if not removed:
return f'Configuration for {self.module_name} tool not found. ' \
f'Nothing to delete'
return f'Configuration for {self.module_name} tool was successfully ' \
f'deleted'