Skip to content

Commit a8d248c

Browse files
committed
fix function parameter indentation
1 parent 02c593c commit a8d248c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

dlp/dlp_inspect_image_file.py

Lines 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

Lines 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)