From 8f407842f1d0e00d26c555a9dd04f456f9f7ec00 Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Sat, 16 Nov 2024 09:00:18 +0100 Subject: [PATCH] Don't print the git credentials on the notebook Just print the url and then the git user. No point in showing credentials here. --- ml-models/anomaly-detection/5-push-model.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml-models/anomaly-detection/5-push-model.ipynb b/ml-models/anomaly-detection/5-push-model.ipynb index 8fcd2cb..6176f3e 100644 --- a/ml-models/anomaly-detection/5-push-model.ipynb +++ b/ml-models/anomaly-detection/5-push-model.ipynb @@ -103,7 +103,7 @@ }, "outputs": [], "source": [ - "print(f'Checking out repo at {ops_repo_url} with user {git_user}')\n", + "print(f'Checking out repo at {ops_repo_location} with user {git_user}')\n", "ops_repository_local = '/opt/app-root/src/industrial-edge'\n", "try:\n", " repository = git.Repo.clone_from(ops_repo_url, ops_repository_local)\n",