Skip to content

Commit 162c543

Browse files
authored
fix: removes C-style semicolons and slash comments (#59)
1 parent dd6edae commit 162c543

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

documentai/snippets/process_document_sample_v1beta3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
# [START documentai_process_document]
1919

2020
# TODO(developer): Uncomment these variables before running the sample.
21-
# project_id= 'YOUR_PROJECT_ID';
22-
# location = 'YOUR_PROJECT_LOCATION'; // Format is 'us' or 'eu'
23-
# processor_id = 'YOUR_PROCESSOR_ID'; // Create processor in Cloud Console
24-
# file_path = '/path/to/local/pdf';
21+
# project_id= 'YOUR_PROJECT_ID'
22+
# location = 'YOUR_PROJECT_LOCATION' # Format is 'us' or 'eu'
23+
# processor_id = 'YOUR_PROCESSOR_ID' # Create processor in Cloud Console
24+
# file_path = '/path/to/local/pdf'
2525

2626

2727
def process_document_sample(

documentai/snippets/quickstart_sample_v1beta3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
# [START documentai_quickstart]
1919

2020
# TODO(developer): Uncomment these variables before running the sample.
21-
# project_id= 'YOUR_PROJECT_ID';
22-
# location = 'YOUR_PROJECT_LOCATION'; # Format is 'us' or 'eu'
23-
# processor_id = 'YOUR_PROCESSOR_ID'; # Create processor in Cloud Console
24-
# file_path = '/path/to/local/pdf';
21+
# project_id= 'YOUR_PROJECT_ID'
22+
# location = 'YOUR_PROJECT_LOCATION' # Format is 'us' or 'eu'
23+
# processor_id = 'YOUR_PROCESSOR_ID' # Create processor in Cloud Console
24+
# file_path = '/path/to/local/pdf'
2525

2626

2727
def quickstart(project_id: str, location: str, processor_id: str, file_path: str):

0 commit comments

Comments
 (0)