Issue is:
- remove
https://github.com/pandas-dev/pandas/blob/db8af0e767cb66a7b747984feec380822012cce9/.pre-commit-config.yaml#L22-L26
- add the
ruff
check which checks the same thing (but faster)
https://github.com/pandas-dev/pandas/blob/5b6d6eba9ec372baa8c0755b59f72cfb9d4db873/pyproject.toml#L187-L206
(note: you may need per-file-ignores
to ignore the asv_bench
directory from the check)
check that pre-commit run ruff --all-files
passes
Comment From: hisergiorojas
take
Comment From: hisergiorojas
I did a draft pull request with my changes that fixes the issue but
The checks fails when I run the command:
pre-commit run ruff --all-files
Do I auto fix the formatting errors?