Skip to content

Commit bcb18a4

Browse files
committed
chore: run black on transport modules
1 parent cfde494 commit bcb18a4

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

packages/google-auth/google/auth/transport/requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from typing import Set
2020

21-
__lazy_modules__: Set[str] = {'requests', 'requests.adapters', 'requests.exceptions'}
21+
__lazy_modules__: Set[str] = {"requests", "requests.adapters", "requests.exceptions"}
2222

2323
import functools
2424
import http.client as http_client

packages/google-auth/google/auth/transport/urllib3.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@
1818

1919
from typing import Set
2020

21-
__lazy_modules__: Set[str] = {"urllib3", "urllib3.exceptions", "certifi", "packaging", "packaging.version"}
21+
__lazy_modules__: Set[str] = {
22+
"urllib3",
23+
"urllib3.exceptions",
24+
"certifi",
25+
"packaging",
26+
"packaging.version",
27+
}
2228

2329
import http.client as http_client
2430
import logging

0 commit comments

Comments
 (0)