From b4f1eab7529742287edddf8974c5eea9e55eb4bf Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 13 Jul 2023 12:35:11 +0200 Subject: [PATCH] added test printing of var --- code/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/utils.py b/code/utils.py index 148842b..ce03eee 100644 --- a/code/utils.py +++ b/code/utils.py @@ -22,10 +22,11 @@ def clone_repository( repo_url: AnyHttpUrl, repo_dir: str = REPO_DIR ) -> Path: + print('repo_url: ', repo_url) + print('repo_dir: ', repo_dir) # extract repo name repo_name = repo_url.split('/')[-1].replace('.git', '') dst_dir = Path(repo_dir) / repo_name - logging.warning(dst_dir) # prepare repo download dir if dst_dir.exists(): shutil.rmtree(dst_dir)