Skip to content

Commit 8e50489

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7688de4 commit 8e50489

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

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)