diff --git a/utils.py b/utils.py index b1eeb52..10250c0 100644 --- a/utils.py +++ b/utils.py @@ -3,7 +3,6 @@ from pathlib import Path from git import Repo def clone_repository(repo_url: AnyHttpUrl) -> Path: - print(f'cloning into {repo_url}') # extract repo name repo_name = repo_url.split('/')[-1].replace('.git', '') dst_dir = Path(__file__).parent / repo_name