Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.1
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.2
rev: v0.15.11
hooks:
- id: ruff
args: ["--fix"]
6 changes: 2 additions & 4 deletions examples/basic_usage_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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():
Expand Down
Loading