Kims12 commited on
Commit
4a9aba4
·
verified ·
1 Parent(s): 3c7e96b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -56,8 +56,8 @@ def analyze_reviews(file):
56
  output.seek(0)
57
  logging.info("결과 파일 저장 완료")
58
 
59
- # BytesIO 데이터를 바이트로 변환하고 파일 이름과 함께 반환
60
- return (output.getvalue(), "분석된_리뷰.xlsx")
61
  except Exception as e:
62
  logging.error(f"분석 과정 중 오류: {e}")
63
  return f"분석 과정에서 오류가 발생했습니다: {e}"
 
56
  output.seek(0)
57
  logging.info("결과 파일 저장 완료")
58
 
59
+ # BytesIO 데이터를 바이트로 변환하고 반환
60
+ return output.getvalue()
61
  except Exception as e:
62
  logging.error(f"분석 과정 중 오류: {e}")
63
  return f"분석 과정에서 오류가 발생했습니다: {e}"