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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 24.8.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.1.0
hooks:
- id: black
6 changes: 2 additions & 4 deletions tests/test_zen.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@


def test_zen_of_python():
assert zen_of_python() == (
"""The Zen of Python, by Tim Peters
assert zen_of_python() == ("""The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Expand All @@ -24,5 +23,4 @@ def test_zen_of_python():
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
"""
)
""")
Loading