https://github.com/python/cpython/commit/1e972c74cf22b92e696fe161253ca16c4a074629 commit: 1e972c74cf22b92e696fe161253ca16c4a074629 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-06-27T16:27:12+03:00 summary:
[3.13] gh-92266: Replace tabs with four spaces in Python files (GH-135983) (#136036) Co-authored-by: Hugo van Kemenade <[email protected]> files: M .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 834fdfa2fd321d..c445ef627a20c4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,6 +26,13 @@ repos: name: Run Black on Tools/jit/ files: ^Tools/jit/ + - repo: https://github.com/Lucas-C/pre-commit-hooks + rev: v1.5.5 + hooks: + - id: remove-tabs + types: [python] + exclude: ^Tools/c-analyzer/cpython/_parser.py + - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
