Fix codespell and blacken-docs failures in CHANGELOG.md - #2302
Conversation
pre-commit.ci runs with --all-files, so both of these currently fail on every open pull request, not just the one that touches them: - codespell: "configureable" -> "configurable" (CHANGELOG.md:18). That entry is generated from the title of jupyter#2250, so the typo can only be corrected here. - blacken-docs: a Python block in the 5.6.1 section was missing the blank line black requires before a top-level statement. Verified against the pinned hook versions: codespell 2.4.2 with -L sur,nd,assertin, blacken-docs 1.20.0 with black 23.7.0, and mdformat 1.0.0. All three are clean afterwards and mdformat leaves the file unchanged.
9040664 to
ab7d2e0
Compare
|
CI is 27/28 green. The only red is Worth noting the blast radius: (The |
|
@minrk sorry for the direct ping — this just needs a |
pre-commit.ci runs with
--all-files, so these two failures currently show up on every open pull request, not just one that touchesCHANGELOG.md. As of now they red #2290, #2294, #2299 and #2301.Two fixes, both in
CHANGELOG.md:configureable→configurable(line 18). That entry is generated from the title of Allow configureable WebPDF JavaScript processing timeout #2250, so the typo can only be corrected here.Verification
Run against the versions pinned in
.pre-commit-config.yaml, not whatever was newest:codespell-L sur,nd,assertinblacken-docsblack==23.7.0mdformatAlso checked that the edited lines carry no trailing whitespace and the file still ends in a single newline, so
trailing-whitespaceandend-of-file-fixerstay happy.No code or behaviour changes.