diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index efcb2110..f572158d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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: @@ -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: @@ -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] @@ -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 diff --git a/aiopenapi3/v30/formdata.py b/aiopenapi3/v30/formdata.py index d727ff24..68b9d36d 100644 --- a/aiopenapi3/v30/formdata.py +++ b/aiopenapi3/v30/formdata.py @@ -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