From df9da90be7dd1e5ae4d986514f9fc981ca744d84 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 18:40:10 +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.16.1 → v0.16.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.16.1...v0.16.6) - [github.com/zizmorcore/zizmor-pre-commit: v1.29.0 → v1.30.0](https://github.com/zizmorcore/zizmor-pre-commit/compare/v1.29.0...v1.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 f3f90ed..24c3a18 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,14 +33,14 @@ repos: types: [file, yaml] entry: yamllint --strict - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.16.1 + rev: v0.16.6 hooks: - id: ruff-format alias: ruff - id: ruff-check alias: ruff - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: v1.29.0 + rev: v1.30.0 hooks: - id: zizmor args: [--pedantic] From efbff513f410f3be89beb8fafba52efb921d31d7 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 18:41:39 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7bd8288..5ccd067 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,18 @@ It is available as: ```python import schemastore + registry = schemastore.registry() ``` and use any of the API from the aforementioned referencing package to make use of the schemas, such as: ```python -print(registry.get_or_retrieve("https://json.schemastore.org/github-action.json").value) - +print( + registry.get_or_retrieve( + "https://json.schemastore.org/github-action.json" + ).value +) ``` though more typically you will use the registry alongside a JSON Schema validator such as those provided by the [`jsonschema` library](https://python-jsonschema.readthedocs.io/):