removed print statement

This commit is contained in:
brb
2023-07-05 21:22:41 +02:00
parent bf618c7cbe
commit 7eb8e5d2fd
-1
View File
@@ -3,7 +3,6 @@ from pathlib import Path
from git import Repo from git import Repo
def clone_repository(repo_url: AnyHttpUrl) -> Path: def clone_repository(repo_url: AnyHttpUrl) -> Path:
print(f'cloning into {repo_url}')
# extract repo name # extract repo name
repo_name = repo_url.split('/')[-1].replace('.git', '') repo_name = repo_url.split('/')[-1].replace('.git', '')
dst_dir = Path(__file__).parent / repo_name dst_dir = Path(__file__).parent / repo_name