Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a8d248c

Browse filesBrowse files
committed
fix function parameter indentation
1 parent 02c593c commit a8d248c
Copy full SHA for a8d248c

File tree

Expand file treeCollapse file tree

2 files changed

+6
-4
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+6
-4
lines changed

‎dlp/dlp_inspect_image_file.py

Copy file name to clipboardExpand all lines: dlp/dlp_inspect_image_file.py
+3-2Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
import google.cloud.dlp
1919

2020

21-
def inspect_image_file(project_id='YOUR_PROJECT_ID',
22-
filepath='path/to/image.png'):
21+
def inspect_image_file(
22+
project_id='YOUR_PROJECT_ID',
23+
filepath='path/to/image.png'):
2324
# Instantiate a client
2425
dlp = google.cloud.dlp.DlpServiceClient()
2526

‎dlp/dlp_inspect_text_file.py

Copy file name to clipboardExpand all lines: dlp/dlp_inspect_text_file.py
+3-2Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
import google.cloud.dlp
1919

2020

21-
def inspect_text_file(project_id='YOUR_PROJECT_ID',
22-
filepath='path/to/file.txt'):
21+
def inspect_text_file(
22+
project_id='YOUR_PROJECT_ID',
23+
filepath='path/to/file.txt'):
2324
# Instantiate a client
2425
dlp = google.cloud.dlp.DlpServiceClient()
2526

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.