tracinginsights commited on
Commit
aa0fd70
·
1 Parent(s): 2b9ed24

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,6 +1,10 @@
1
  from git import Repo
2
 
3
- repo = Repo.clone_from('https://tracinginsights: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@github.com/TracingInsights/Charts.git', )
 
 
 
 
4
 
5
 
6
 
 
1
  from git import Repo
2
 
3
+ import os
4
+
5
+ current_working_directory = os.getcwd()
6
+
7
+ repo = Repo.clone_from('https://tracinginsights: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@github.com/TracingInsights/Charts.git', current_working_directory )
8
 
9
 
10