Skip to content

Commit 26bee2c

Browse files
[pre-commit.ci] pre-commit autoupdate (#1927)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 24.10.0 → 25.1.0](psf/black@24.10.0...25.1.0) - [github.com/pycqa/isort: 5.13.2 → 6.0.0](PyCQA/isort@5.13.2...6.0.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 39b793c commit 26bee2c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repos:
3838
- id: django-upgrade
3939
args: [--target-version, "5.1"]
4040
- repo: https://github.com/psf/black
41-
rev: 24.10.0
41+
rev: 25.1.0
4242
hooks:
4343
- id: black
4444
exclude: '(\/migrations\/)'
@@ -49,7 +49,7 @@ repos:
4949
exclude_types: [html, json, scss]
5050
exclude: '(^djangoproject\/static\/js\/lib\/.*$)'
5151
- repo: https://github.com/pycqa/isort
52-
rev: "5.13.2"
52+
rev: "6.0.0"
5353
hooks:
5454
- id: isort
5555
- repo: https://github.com/pycqa/flake8

Diff for: tracdb/tests.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_with_custom_lookup(self):
8888

8989
self.assertTicketsEqual(
9090
Ticket.objects.with_custom().filter(custom__x="A"),
91-
[("test")],
91+
["test"],
9292
)
9393

9494
def test_with_custom_lookup_multiple(self):
@@ -98,7 +98,7 @@ def test_with_custom_lookup_multiple(self):
9898

9999
self.assertTicketsEqual(
100100
Ticket.objects.with_custom().filter(custom__x="A", custom__y="A"),
101-
[("test1")],
101+
["test1"],
102102
)
103103

104104
def test_from_querystring_model_field(self):

0 commit comments

Comments
 (0)