Skip to content

Commit 66bb32c

Browse files
authored
chore: blacken (#772)
1 parent c594936 commit 66bb32c

32 files changed

+6723
-6141
lines changed

apiclient/__init__.py

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from googleapiclient import http
1111
from googleapiclient import mimeparse
1212
from googleapiclient import model
13+
1314
try:
1415
from googleapiclient import sample_tools
1516
except ImportError:
@@ -21,16 +22,17 @@
2122
__version__ = googleapiclient.__version__
2223

2324
_SUBMODULES = {
24-
'channel': channel,
25-
'discovery': discovery,
26-
'errors': errors,
27-
'http': http,
28-
'mimeparse': mimeparse,
29-
'model': model,
30-
'sample_tools': sample_tools,
31-
'schema': schema,
25+
"channel": channel,
26+
"discovery": discovery,
27+
"errors": errors,
28+
"http": http,
29+
"mimeparse": mimeparse,
30+
"model": model,
31+
"sample_tools": sample_tools,
32+
"schema": schema,
3233
}
3334

3435
import sys
36+
3537
for module_name, module in iteritems(_SUBMODULES):
36-
sys.modules['apiclient.%s' % module_name] = module
38+
sys.modules["apiclient.%s" % module_name] = module

0 commit comments

Comments
 (0)