From 64fe5721665acb77d4614ace3518f2b010add0c4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 00:12:15 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.7.4 → v0.8.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.4...v0.8.2) - [github.com/python-jsonschema/check-jsonschema: 0.29.4 → 0.30.0](https://github.com/python-jsonschema/check-jsonschema/compare/0.29.4...0.30.0) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index deba077..ab413c9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.7.4" + rev: "v0.8.2" hooks: - id: ruff args: [--fix, --show-fixes] @@ -33,7 +33,7 @@ repos: additional_dependencies: ["validate-pyproject-schema-store[all]>=2024.10.21"] - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.29.4" + rev: "0.30.0" hooks: - id: check-dependabot - id: check-github-workflows From b0aa38889ecbb8cf3e72e25b27cc477264f9b54a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 00:12:45 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/ninja/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ninja/__init__.py b/src/ninja/__init__.py index 5a143f8..252a4b8 100644 --- a/src/ninja/__init__.py +++ b/src/ninja/__init__.py @@ -10,7 +10,7 @@ from ._version import version as __version__ from .ninja_syntax import Writer, escape, expand -__all__ = ["__version__", "DATA", "BIN_DIR", "ninja", "Writer", "escape", "expand"] +__all__ = ["BIN_DIR", "DATA", "Writer", "__version__", "escape", "expand", "ninja"] def __dir__() -> list[str]: