fix(#128/#129/#130/#131/#132): 低優先度バグ・コード品質の一括修正#139
Closed
hideyukiMORI wants to merge 1 commit into
Closed
Conversation
- #128: InMemoryCommentRepository.find_all_by_note() に sorted() を追加し SQLAlchemy 実装と同じ id 昇順に揃える - #129: mcp.py の 15 件の type: ignore[type-arg] に reason コメントを追加 - #130: app_env に @field_validator を追加し "local/test/production" に制限する - #131: CI の Python matrix に 3.14 を追加(開発環境と一致させる) - #132: export_openapi.py の docstring の削除済みコマンドを修正する Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3 tasks
hideyukiMORI
added a commit
that referenced
this pull request
May 19, 2026
fix: low-priority fixes from review (PR #139 manual)
Owner
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
#128 — InMemoryCommentRepository ソート欠如
find_all_by_note()にsorted(..., key=lambda c: c.id)を追加SqlAlchemyCommentRepositoryのORDER BY idと挙動を一致させる#129 — mcp.py の type: ignore に reason コメントがない
# type: ignore[type-arg]全てに# reason: mcp tool handler type stubs do not support generic dictを追加#130 — app_env が未検証
@field_validator("app_env")で{"local", "test", "production"}に制限#131 — CI Python matrix に 3.14 がない
["3.12", "3.14"]に拡張(CLAUDE.md 記載の開発環境 3.14 と一致)#132 — export_openapi.py の stale docstring
uv run export-openapi→ 正しいuv run python src/scripts/export_openapi.pyに修正Test plan
Closes #128
Closes #129
Closes #130
Closes #131
Closes #132
🤖 Generated with Claude Code