File size: 209 Bytes
55a036a
 
 
 
ac7c87e
 
1
2
3
4
5
6
from git import Repo
import os

GITHUB_PAT = os.environ['GITHUB']
def clone_repo():
    return Repo.clone_from(f'https://tracinginsights:{GITHUB_PAT}@github.com/TracingInsights/Charts.git', 'repo_directory'  )