From 7688de46f5f47994acdb7d7f79442e8d7e3dd535 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 20:17:42 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/tox-dev/pyproject-fmt: v2.11.1 → v2.12.1](https://github.com/tox-dev/pyproject-fmt/compare/v2.11.1...v2.12.1) - [github.com/abravalheri/validate-pyproject: v0.24.1 → v0.25](https://github.com/abravalheri/validate-pyproject/compare/v0.24.1...v0.25) - [github.com/psf/black-pre-commit-mirror: 25.12.0 → 26.1.0](https://github.com/psf/black-pre-commit-mirror/compare/25.12.0...26.1.0) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e302cb43..9a995bd5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,11 +24,11 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/tox-dev/pyproject-fmt - rev: v2.11.1 + rev: v2.12.1 hooks: - id: pyproject-fmt - repo: https://github.com/abravalheri/validate-pyproject - rev: v0.24.1 + rev: v0.25 hooks: - id: validate-pyproject - repo: https://github.com/sphinx-contrib/sphinx-lint @@ -44,7 +44,7 @@ repos: entry: isort --profile=black name: isort (python) - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.12.0 + rev: 26.1.0 hooks: - id: black - repo: https://github.com/tonybaloney/perflint From 8e50489136cd75eaa47a7ee0a327876c5a2b9584 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 20:18:07 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- docs/data-processing/apis/grpc/accounts_pb2.py | 1 + docs/data-processing/apis/grpc/accounts_pb2_grpc.py | 1 + docs/productive/qa/requests/certs.py | 1 + docs/productive/qa/requests/exceptions.py | 1 + docs/productive/qa/requests/hooks.py | 1 + docs/productive/qa/requests/models.py | 2 +- docs/productive/qa/requests/sessions.py | 1 + 7 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/data-processing/apis/grpc/accounts_pb2.py b/docs/data-processing/apis/grpc/accounts_pb2.py index de7deae0..ca7d8e6a 100644 --- a/docs/data-processing/apis/grpc/accounts_pb2.py +++ b/docs/data-processing/apis/grpc/accounts_pb2.py @@ -6,6 +6,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # source: accounts.proto """Generated protocol buffer code.""" + from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection diff --git a/docs/data-processing/apis/grpc/accounts_pb2_grpc.py b/docs/data-processing/apis/grpc/accounts_pb2_grpc.py index c6c2f83d..b3787a52 100644 --- a/docs/data-processing/apis/grpc/accounts_pb2_grpc.py +++ b/docs/data-processing/apis/grpc/accounts_pb2_grpc.py @@ -4,6 +4,7 @@ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! """Client and server classes corresponding to protobuf-defined services.""" + import accounts_pb2 as accounts__pb2 import grpc diff --git a/docs/productive/qa/requests/certs.py b/docs/productive/qa/requests/certs.py index 17f5b31e..33933e3c 100644 --- a/docs/productive/qa/requests/certs.py +++ b/docs/productive/qa/requests/certs.py @@ -12,6 +12,7 @@ environment, you can change the definition of where() to return a separately packaged CA bundle. """ + from certifi import where if __name__ == "__main__": diff --git a/docs/productive/qa/requests/exceptions.py b/docs/productive/qa/requests/exceptions.py index 9cce41c9..eef0fd55 100644 --- a/docs/productive/qa/requests/exceptions.py +++ b/docs/productive/qa/requests/exceptions.py @@ -6,6 +6,7 @@ This module contains the set of Requests' exceptions. """ + from urllib3.exceptions import HTTPError as BaseHTTPError diff --git a/docs/productive/qa/requests/hooks.py b/docs/productive/qa/requests/hooks.py index fb6450ee..663184b2 100644 --- a/docs/productive/qa/requests/hooks.py +++ b/docs/productive/qa/requests/hooks.py @@ -11,6 +11,7 @@ ``response``: The response generated from a Request. """ + HOOKS = ["response"] diff --git a/docs/productive/qa/requests/models.py b/docs/productive/qa/requests/models.py index 94c6a8e1..f8bf7b04 100644 --- a/docs/productive/qa/requests/models.py +++ b/docs/productive/qa/requests/models.py @@ -576,7 +576,7 @@ def prepare_body(self, data, files, json=None): else: # Multi-part file uploads. if files: - (body, content_type) = self._encode_files(files, data) + body, content_type = self._encode_files(files, data) else: if data: body = self._encode_params(data) diff --git a/docs/productive/qa/requests/sessions.py b/docs/productive/qa/requests/sessions.py index f73068a6..f0598abf 100644 --- a/docs/productive/qa/requests/sessions.py +++ b/docs/productive/qa/requests/sessions.py @@ -7,6 +7,7 @@ This module provides a Session object to manage and persist settings across requests (cookies, auth, proxies). """ + import os import sys import time