Skip to content

Commit 9cc4320

Browse files
[pre-commit.ci] pre-commit autoupdate (#929)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
1 parent a978ef6 commit 9cc4320

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ repos:
88
hooks:
99
- id: yesqa
1010
- repo: https://github.com/PyCQA/isort
11-
rev: '5.13.2'
11+
rev: '6.0.0'
1212
hooks:
1313
- id: isort
1414
- repo: https://github.com/psf/black
15-
rev: '24.10.0'
15+
rev: '25.1.0'
1616
hooks:
1717
- id: black
1818
language_version: python3 # Should be a command that runs python

aiohttp_jinja2/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,16 +204,16 @@ def wrapper(
204204

205205
@overload
206206
def wrapper(
207-
func: Callable[[_AbstractView], _TemplateReturnType]
207+
func: Callable[[_AbstractView], _TemplateReturnType],
208208
) -> Callable[[_AbstractView], Awaitable[web.StreamResponse]]: ...
209209

210210
@overload
211211
def wrapper(
212-
func: Callable[[_T, web.Request], _TemplateReturnType]
212+
func: Callable[[_T, web.Request], _TemplateReturnType],
213213
) -> Callable[[_T, web.Request], Awaitable[web.StreamResponse]]: ...
214214

215215
def wrapper(
216-
func: Callable[..., _TemplateReturnType]
216+
func: Callable[..., _TemplateReturnType],
217217
) -> Callable[..., Awaitable[web.StreamResponse]]:
218218
# TODO(PY310): ParamSpec
219219

0 commit comments

Comments
 (0)