Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix style checks on Python 3.12 (#328)
After merging rapidsai/ci-imgs#188, style checks here started breaking like this: ```text python/cuvs/cuvs/test/test_doctests.py:103:24: E231 missing whitespace after ':' python/cuvs/cuvs/test/test_doctests.py:124:27: E231 missing whitespace after ':' ``` ([build link](https://github.com/rapidsai/cuvs/actions/runs/10905609739/job/30264867507?pr=325)) Looks like both of those are false positives (we really do intend to not have a space after the `:` on those lines). This proposes ignoring them with `#noqa` comments.
- Loading branch information