Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#1667)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/adamchainz/django-upgrade: 1.8.0 → 1.9.0](adamchainz/django-upgrade@1.8.0...1.9.0)
- [github.com/pre-commit/mirrors-eslint: v8.22.0 → v8.23.0](pre-commit/mirrors-eslint@v8.22.0...v8.23.0)
- [github.com/psf/black: 22.6.0 → 22.8.0](psf/black@22.6.0...22.8.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>
  • Loading branch information
pre-commit-ci[bot] committed Sep 9, 2022
1 parent 6a34e00 commit 6f548ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/adamchainz/django-upgrade
rev: 1.8.0
rev: 1.9.0
hooks:
- id: django-upgrade
args: [--target-version, "3.2"]
Expand All @@ -43,15 +43,15 @@ repos:
- id: prettier
types_or: [javascript, css]
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.22.0
rev: v8.23.0
hooks:
- id: eslint
files: \.js?$
types: [file]
args:
- --fix
- repo: https://github.com/psf/black
rev: 22.6.0
rev: 22.8.0
hooks:
- id: black
language_version: python3
Expand Down
2 changes: 1 addition & 1 deletion tests/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
re_path(
r"^resolving1/(.+)/(.+)/$", views.resolving_view, name="positional-resolving"
),
re_path(r"^resolving2/(?P<arg1>.+)/(?P<arg2>.+)/$", views.resolving_view),
path("resolving2/<path:arg1>/<path:arg2>/", views.resolving_view),
re_path(r"^resolving3/(.+)/$", views.resolving_view, {"arg2": "default"}),
re_path(r"^regular/(?P<title>.*)/$", views.regular_view),
re_path(r"^template_response/(?P<title>.*)/$", views.template_response_view),
Expand Down

0 comments on commit 6f548ae

Please sign in to comment.