Skip to content

Commit

Permalink
Adjust name in pre-commit output (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefmolin authored Nov 13, 2024
1 parent 5d7cb21 commit 197ac36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- id: strip-exif
name: Strip EXIF metadata
name: strip EXIF metadata
description: |
This hook ensures that no image metadata (EXIF) is present on images added to version control.
entry: exif-stripper
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Add the following to your `.pre-commit-config.yaml` file:

```yaml
- repo: https://github.com/stefmolin/exif-stripper
rev: 0.6.0
rev: 0.6.1
hooks:
- id: strip-exif
```
Expand Down
2 changes: 1 addition & 1 deletion src/exif_stripper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from PIL import Image, UnidentifiedImageError

__version__ = '0.6.0'
__version__ = '0.6.1'


def process_image(filename: str | os.PathLike) -> bool:
Expand Down

0 comments on commit 197ac36

Please sign in to comment.