This repository was archived by the owner on Apr 16, 2026. It is now read-only.
fix: resolve config key mismatch between README and code - #43
Open
pxxxsxzy wants to merge 2 commits into
Open
Conversation
Owner
|
감사합니다. |
The 'filename' is a legacy configuration key, so it has been updated to point to the 'main' key as suggested.
Author
|
리뷰 감사합니다! 말씀 주신 대로 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
config.yaml의 메인 파일명 설정 키가 README(main)와 실제 코드(filename)에서 서로 다릅니다.main: "solution.py"를 설정해도, 실제로는 기본값인main.{filetype}으로 파일이 생성됩니다.data.get("filename", ...)으로filename키만 조회하도록 구현되어 있어, 사용자가 설정한main키값을 찾지 못하고 기본값을 사용하고 있습니다.main:→filename:)main사용자의 설정이 여전히 동작하지 않으며,main보다 명칭의 직관성이 떨어집니다.filename→main)filename속성을 파악해 사용하던 사용자의 설정이 깨지게 됩니다.main=data.get("main") or data.get("filename") or f"main.{filetype}"filename)와 신규 사용자(main) 모두 지원 가능하며, 가독성 높은 속성 이름을 유지할 수 있습니다.