Skip to content

Commit

Permalink
add missing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
crwilcox committed Jul 24, 2018
1 parent 50b961b commit 1d91550
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dlp/google/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = pkgutil.extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion dlp/google/cloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = pkgutil.extend_path(__path__, __name__)
5 changes: 2 additions & 3 deletions dlp/synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@

client_library_version = '0.5.0'

# tasks has two product names, and a poorly named artman yaml
library = gapic.py_library(
'dlp', 'v2',
config_path='/google/privacy/dlp/artman_dlp_v2.yaml')

s.copy(library, excludes="README.rst")
s.copy(library, excludes=["README.rst", "nox.py"])

# Set Release Status
release_status = 'Development Status :: 3 - Alpha'
Expand Down Expand Up @@ -65,4 +64,4 @@
s.replace(
'google/cloud/dlp_v2/gapic/dlp_service_client.py',
'(\s+)\*.*\n\s+::\n\n',
'\g<1> ::\n')
'\g<1> ::\n')

0 comments on commit 1d91550

Please sign in to comment.