Skip to content

Commit

Permalink
change xlsx name to english because of encoding error
Browse files Browse the repository at this point in the history
  • Loading branch information
HardenCurry committed Feb 28, 2025
1 parent b16a7e0 commit 70a8069
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/lesson.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
1. 코치 소동섭
2. 김혜원
3. 김민성A
4. 김민하
5. 이홍관
4. 김민하
2 changes: 1 addition & 1 deletion excel_to_notion.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def duplicate_template_page(self):
parent_page_id = "1a39f0ea074e80e085a5dbe8bfa5404f"
# 조 편성 양식 템플릿
template_page_id = "1a79f0ea074e807b9b18c586b0890893"
excel_file_path = "팀_구성_결과.xlsx"
excel_file_path = "team_composition_result.xlsx"
t1 = time.time()
cloner = ExcelToNotionImporter(
Expand Down
3 changes: 2 additions & 1 deletion smash_tkinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def __init__(self):
self.ensure_yaml_file_exists()

# 엑셀 파일 저장 경로 설정
self.excel_file_path = os.path.join(self.config_dir, "팀_구성_결과.xlsx")
self.excel_file_path = os.path.join(
self.config_dir, "team_composition_result.xlsx")
self.notion_page_url = None # 생성된 Notion 페이지 URL 저장

# GUI 스타일 초기화
Expand Down
File renamed without changes.

0 comments on commit 70a8069

Please sign in to comment.