Skip to content

Commit 8e50166

Browse files
[pre-commit.ci] pre-commit autoupdate (#275)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.7.4 → v0.8.2](astral-sh/ruff-pre-commit@v0.7.4...v0.8.2) - [github.com/python-jsonschema/check-jsonschema: 0.29.4 → 0.30.0](python-jsonschema/check-jsonschema@0.29.4...0.30.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f41b36a commit 8e50166

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
- id: trailing-whitespace
1515

1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: "v0.7.4"
17+
rev: "v0.8.2"
1818
hooks:
1919
- id: ruff
2020
args: [--fix, --show-fixes]
@@ -33,7 +33,7 @@ repos:
3333
additional_dependencies: ["validate-pyproject-schema-store[all]>=2024.10.21"]
3434

3535
- repo: https://github.com/python-jsonschema/check-jsonschema
36-
rev: "0.29.4"
36+
rev: "0.30.0"
3737
hooks:
3838
- id: check-dependabot
3939
- id: check-github-workflows

src/ninja/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from ._version import version as __version__
1111
from .ninja_syntax import Writer, escape, expand
1212

13-
__all__ = ["__version__", "DATA", "BIN_DIR", "ninja", "Writer", "escape", "expand"]
13+
__all__ = ["BIN_DIR", "DATA", "Writer", "__version__", "escape", "expand", "ninja"]
1414

1515

1616
def __dir__() -> list[str]:

0 commit comments

Comments
 (0)