Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
e5f6196
1
Parent(s):
548e3f2
Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def duplicate(source_repo, dst_repo, token, repo_type):
|
|
32 |
else:
|
33 |
repo = Repository(local_dir=local_dir, clone_from=full_path)
|
34 |
|
35 |
-
files = listdir(local_dir)
|
36 |
for f in files:
|
37 |
if not f.startswith("."):
|
38 |
upload_file(os.path.join(local_dir, f), f, dst_repo, token=token, repo_type=repo_type)
|
|
|
32 |
else:
|
33 |
repo = Repository(local_dir=local_dir, clone_from=full_path)
|
34 |
|
35 |
+
files = os.listdir(local_dir)
|
36 |
for f in files:
|
37 |
if not f.startswith("."):
|
38 |
upload_file(os.path.join(local_dir, f), f, dst_repo, token=token, repo_type=repo_type)
|