Update app.py
Browse files
app.py
CHANGED
@@ -970,7 +970,7 @@ if __name__ == "__main__":
|
|
970 |
# 파일 경로 체크
|
971 |
print("\n🔍 파일 경로 확인 중...")
|
972 |
missing_files = []
|
973 |
-
for file_path, description in
|
974 |
if not os.path.exists(file_path):
|
975 |
missing_files.append(f"{description} ({file_path})")
|
976 |
|
|
|
970 |
# 파일 경로 체크
|
971 |
print("\n🔍 파일 경로 확인 중...")
|
972 |
missing_files = []
|
973 |
+
for file_path, description in REQUIRED_FILES.items(): # REQUIRED_PATHS 대신 REQUIRED_FILES 사용
|
974 |
if not os.path.exists(file_path):
|
975 |
missing_files.append(f"{description} ({file_path})")
|
976 |
|