From ffffeb092aad6098abc362989ebe65c1e6ccc7c4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 22:22:14 +0000 Subject: [PATCH 1/2] Update pre-commit hooks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.16.1 → v0.16.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.16.1...v0.16.6) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index daf86511b..263eac87b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.16.1 + rev: v0.16.6 hooks: - id: ruff-check args: ["--fix", "--show-fixes"] From 87fb399a563353d7a97b70d4f23bdee673cd7ba1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 22:23:00 +0000 Subject: [PATCH 2/2] Apply pre-commit fixes --- plans/ctable-schema.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plans/ctable-schema.md b/plans/ctable-schema.md index d9cd3fb1c..6d3bc9767 100644 --- a/plans/ctable-schema.md +++ b/plans/ctable-schema.md @@ -882,12 +882,12 @@ from .schema import bool, bytes, field, float64, int64, string And in `__all__`: ```python -"bool", -"bytes", -"field", -"float64", -"int64", -"string", +("bool",) +("bytes",) +("field",) +("float64",) +("int64",) +("string",) ``` Notes: