Skip to content

Commit d315704

Browse files
committed
⬆️ Update pre-commit and auto fix from hooks
1 parent 9811c54 commit d315704

File tree

8 files changed

+10
-4
lines changed

8 files changed

+10
-4
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ repos:
2424
- id: end-of-file-fixer
2525
- id: trailing-whitespace
2626
- repo: https://github.com/tox-dev/pyproject-fmt
27-
rev: v2.11.1
27+
rev: v2.14.2
2828
hooks:
2929
- id: pyproject-fmt
3030
- repo: https://github.com/abravalheri/validate-pyproject
31-
rev: v0.24.1
31+
rev: v0.25
3232
hooks:
3333
- id: validate-pyproject
3434
- repo: https://github.com/sphinx-contrib/sphinx-lint
@@ -44,7 +44,7 @@ repos:
4444
entry: isort --profile=black
4545
name: isort (python)
4646
- repo: https://github.com/psf/black-pre-commit-mirror
47-
rev: 25.12.0
47+
rev: 26.1.0
4848
hooks:
4949
- id: black
5050
- repo: https://github.com/tonybaloney/perflint

docs/data-processing/apis/grpc/accounts_pb2.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Generated by the protocol buffer compiler. DO NOT EDIT!
77
# source: accounts.proto
88
"""Generated protocol buffer code."""
9+
910
from google.protobuf import descriptor as _descriptor
1011
from google.protobuf import message as _message
1112
from google.protobuf import reflection as _reflection

docs/data-processing/apis/grpc/accounts_pb2_grpc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
66
"""Client and server classes corresponding to protobuf-defined services."""
7+
78
import accounts_pb2 as accounts__pb2
89
import grpc
910

docs/productive/qa/requests/certs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
environment, you can change the definition of where() to return a separately
1313
packaged CA bundle.
1414
"""
15+
1516
from certifi import where
1617

1718
if __name__ == "__main__":

docs/productive/qa/requests/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
This module contains the set of Requests' exceptions.
88
"""
9+
910
from urllib3.exceptions import HTTPError as BaseHTTPError
1011

1112

docs/productive/qa/requests/hooks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
``response``:
1212
The response generated from a Request.
1313
"""
14+
1415
HOOKS = ["response"]
1516

1617

docs/productive/qa/requests/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ def prepare_body(self, data, files, json=None):
576576
else:
577577
# Multi-part file uploads.
578578
if files:
579-
(body, content_type) = self._encode_files(files, data)
579+
body, content_type = self._encode_files(files, data)
580580
else:
581581
if data:
582582
body = self._encode_params(data)

docs/productive/qa/requests/sessions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
This module provides a Session object to manage and persist settings across
88
requests (cookies, auth, proxies).
99
"""
10+
1011
import os
1112
import sys
1213
import time

0 commit comments

Comments
 (0)