From 8a5791172dcbdca1db5462b829d43ddb45188302 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 20:23:46 +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/psf/black-pre-commit-mirror: 25.9.0 → 26.5.1](https://github.com/psf/black-pre-commit-mirror/compare/25.9.0...26.5.1) - [github.com/astral-sh/ruff-pre-commit: v0.14.2 → v0.16.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.14.2...v0.16.6) --- .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 656d68c..6b82dfa 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,11 +17,11 @@ repos: - id: trailing-whitespace - id: end-of-file-fixer - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.9.0 + rev: 26.5.1 hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.2 + rev: v0.16.6 hooks: - id: ruff args: ["--fix"] From 0c5f1e9a047e243f3a3183bb9b041c862746ecf6 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 20:23:56 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- examples/basic_usage_example.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/basic_usage_example.py b/examples/basic_usage_example.py index b2ec0cf..8cc4ab6 100644 --- a/examples/basic_usage_example.py +++ b/examples/basic_usage_example.py @@ -165,8 +165,7 @@ def working_with_your_own_data(): print("WORKING WITH YOUR OWN DATA") print("=" * 70) - print( - """ + print(""" Once you're familiar with the library using example data, you can use your own Siemens DICOM files: @@ -191,8 +190,7 @@ def working_with_your_own_data(): print(f"Found {len(tags)} CSA tags") Note: CSA headers are only present in Siemens MRI DICOM files. - """ - ) + """) def main():