removed print statement
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user