Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repos:
hooks:
- id: pycln
- repo: 'https://github.com/psf/black'
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
args:
Expand All @@ -27,7 +27,7 @@ repos:
- id: check-symlinks
- id: debug-statements
- repo: 'https://github.com/PyCQA/flake8'
rev: 7.1.1
rev: 7.2.0
hooks:
- id: flake8
args:
Expand All @@ -41,7 +41,7 @@ repos:
args: [--py39-plus, --keep-runtime-typing]

- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
rev: v1.37.0
hooks:
- id: yamllint
args: ["-d", "{extends: relaxed, rules: {empty-lines: disable, line-length: {max: 1500}}}", --strict, --format, parsable]
Expand All @@ -55,7 +55,7 @@ repos:

- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.14
rev: 0.6.12
hooks:
# Update the uv lockfile
- id: uv-lock
Expand Down
2 changes: 1 addition & 1 deletion aiopenapi3/v30/formdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def encode_content(data: bytes, codec: str) -> bytes:


def encode_multipart_parameters(
fields: list[tuple[str, str, Union[str, bytes], dict[str, str], "SchemaType"]]
fields: list[tuple[str, str, Union[str, bytes], dict[str, str], "SchemaType"]],
) -> MIMEMultipart:
"""
As shown in
Expand Down