Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix all Error #219

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Fix all Error #219

wants to merge 1 commit into from

Conversation

JUNE515
Copy link

@JUNE515 JUNE515 commented Jun 1, 2024

총 바꾼 것
path_to_file_list: 쓰기->읽기로 변경 완료
train_file_list_to_json : replace 같은 것 대체하는 코드 수정. templete start 수정. templete 순서 오는 거 수정
write_file_list: 읽기->쓰기로 변경 완료
main 저 세개의 함수 순서 바뀐 것 수정

그중 첫번째 구체적으로 설명
틀린 이유: 파일을 읽어서 list로 변환하는 것이지만 여기서는 쓰는 코드가 들어가 있습니다.
with open(path, 'r') as file: #쓰는게 아니라 읽어야 하는 코드.
lines = file.readlines()
return [line.strip() for line in lines] 이것을 파일을 읽고, 리스트로 반환하는 코드로 바꾸어주어야합니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant