Skip to content

Commit

Permalink
blacken all gen'd libs (#6792)
Browse files Browse the repository at this point in the history
* blacken all gen'd libs
  • Loading branch information
crwilcox authored Nov 30, 2018
1 parent 62f2e00 commit e9931f7
Show file tree
Hide file tree
Showing 15 changed files with 3,843 additions and 2,511 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

try:
import pkg_resources

pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

try:
import pkg_resources

pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,4 @@
from google.cloud.bigquery_datatransfer_v1 import enums
from google.cloud.bigquery_datatransfer_v1 import types

__all__ = (
'enums',
'types',
'DataTransferServiceClient',
)
__all__ = ("enums", "types", "DataTransferServiceClient")
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,9 @@
from google.cloud.bigquery_datatransfer_v1.gapic import enums


class DataTransferServiceClient(
data_transfer_service_client.DataTransferServiceClient):
class DataTransferServiceClient(data_transfer_service_client.DataTransferServiceClient):
__doc__ = data_transfer_service_client.DataTransferServiceClient.__doc__
enums = enums


__all__ = (
'enums',
'types',
'DataTransferServiceClient',
)
__all__ = ("enums", "types", "DataTransferServiceClient")
Loading

0 comments on commit e9931f7

Please sign in to comment.