Shashank1406 commited on
Commit
a215e28
·
verified ·
1 Parent(s): d79f495

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -5,7 +5,8 @@ import streamlit as st
5
 
6
  GITHUB_REPO_URL = os.environ.get("GITHUB_REPO_URL")
7
 
8
- if not os.path.exists('repo_directory'):
 
9
  Repo.clone_from(GITHUB_REPO_URL, 'repo_directory')
10
 
11
 
 
5
 
6
  GITHUB_REPO_URL = os.environ.get("GITHUB_REPO_URL")
7
 
8
+ if not os.path.exists('repo_directory'):
9
+ print('under if condition',os.path.exists('repo_directory'))
10
  Repo.clone_from(GITHUB_REPO_URL, 'repo_directory')
11
 
12