Skip to content

Commit

Permalink
chore: blacken (googleapis#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 authored Oct 30, 2019
1 parent c594936 commit 66bb32c
Show file tree
Hide file tree
Showing 32 changed files with 6,723 additions and 6,141 deletions.
20 changes: 11 additions & 9 deletions apiclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from googleapiclient import http
from googleapiclient import mimeparse
from googleapiclient import model

try:
from googleapiclient import sample_tools
except ImportError:
Expand All @@ -21,16 +22,17 @@
__version__ = googleapiclient.__version__

_SUBMODULES = {
'channel': channel,
'discovery': discovery,
'errors': errors,
'http': http,
'mimeparse': mimeparse,
'model': model,
'sample_tools': sample_tools,
'schema': schema,
"channel": channel,
"discovery": discovery,
"errors": errors,
"http": http,
"mimeparse": mimeparse,
"model": model,
"sample_tools": sample_tools,
"schema": schema,
}

import sys

for module_name, module in iteritems(_SUBMODULES):
sys.modules['apiclient.%s' % module_name] = module
sys.modules["apiclient.%s" % module_name] = module
Loading

0 comments on commit 66bb32c

Please sign in to comment.