Spaces:
Sleeping
Sleeping
Update process_repo.py
Browse files- process_repo.py +1 -0
process_repo.py
CHANGED
@@ -8,6 +8,7 @@ def extract_repo_files(directory, folder_paths, file_paths):
|
|
8 |
|
9 |
zip_filename = next((file for file in os.listdir(directory) if file.endswith('.zip')), None)
|
10 |
zip_file_path = os.path.join(directory, zip_filename)
|
|
|
11 |
|
12 |
with tempfile.TemporaryDirectory() as tmpdirname:
|
13 |
# Unzip the file into the temporary directory
|
|
|
8 |
|
9 |
zip_filename = next((file for file in os.listdir(directory) if file.endswith('.zip')), None)
|
10 |
zip_file_path = os.path.join(directory, zip_filename)
|
11 |
+
print(zip_file_path)
|
12 |
|
13 |
with tempfile.TemporaryDirectory() as tmpdirname:
|
14 |
# Unzip the file into the temporary directory
|