style: fix comment indentation at the second Copilot call site - #245
Merged
Yifan Yang (Yif-Yang) merged 1 commit intoAug 21, 2026
Merged
Conversation
Cosmetic only. The block comment and its two argv entries in the task-replay path were left at the first call site's indentation level (12 spaces) instead of the 16 the surrounding list uses. Python does not care inside a list literal -- behavior and tests are unchanged -- but it reads as a mistake.
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.
Cosmetic follow-up to #243.
The block comment and its two argv entries in the task-replay call path were left at the first call site's indentation (12 spaces) instead of the 16 that the surrounding list literal uses — an artifact of the scripted edit that patched both sites at once.
Python does not care about indentation inside a list literal, so behavior is unchanged and the suite is unaffected; it simply read as a mistake. No functional change.