haepada commited on
Commit
5ffa691
·
verified ·
1 Parent(s): b7baa07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -970,7 +970,7 @@ if __name__ == "__main__":
970
  # 파일 경로 체크
971
  print("\n🔍 파일 경로 확인 중...")
972
  missing_files = []
973
- for file_path, description in REQUIRED_PATHS.items():
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