Skip to content
Open
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/data-processing/apis/grpc/accounts_pb2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/data-processing/apis/grpc/accounts_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions docs/productive/qa/requests/certs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__":
Expand Down
1 change: 1 addition & 0 deletions docs/productive/qa/requests/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

This module contains the set of Requests' exceptions.
"""

from urllib3.exceptions import HTTPError as BaseHTTPError


Expand Down
1 change: 1 addition & 0 deletions docs/productive/qa/requests/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
``response``:
The response generated from a Request.
"""

HOOKS = ["response"]


Expand Down
2 changes: 1 addition & 1 deletion docs/productive/qa/requests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions docs/productive/qa/requests/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading