codespell: ignore 'aci' (variable name in IBL-Widefield notebook)#165
Merged
Conversation
The 001712/IBL-Widefield notebook (PR #142) uses `aci` as a local variable shorthand for the NWB field `anatomical_coordinates_image`: aci = localization.anatomical_coordinates_images['AnatomicalCoordinatesImageCCFv3'] space = aci.space x_coords = aci.x[:] ... Codespell flagged every `aci` token as a typo for `acpi` — ~50 errors across one PR, blocking CI. Adding `aci` to ignore-words-list (same pattern as the `makin` fix in #154 for the CEBRA author surname). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
|
Preview for this PR has been removed (PR closed). |
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.
Fixes the Codespell run on PR #142.
What was failing
Codespell flagged ~50 occurrences of
aciin001712/IBL-Widefield/public_demo/anatomical_localization_widefield.ipynbas typos foracpi. The string is actually a local variable shorthand for the NWB fieldanatomical_coordinates_image:Fix
Added
acito.codespellrc'signore-words-listwith an inline comment naming the variable + the notebook it lives in. Same pattern as PR #154'smakinfix.🤖 Generated with Claude Code