Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
fix: removes C-style semicolons and slash comments (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
telpirion committed Nov 20, 2020
1 parent 4d30091 commit 1b24bfd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions samples/snippets/process_document_sample_v1beta3.py
Expand Up @@ -18,10 +18,10 @@
# [START documentai_process_document]

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


def process_document_sample(
Expand Down
8 changes: 4 additions & 4 deletions samples/snippets/quickstart_sample_v1beta3.py
Expand Up @@ -18,10 +18,10 @@
# [START documentai_quickstart]

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


def quickstart(project_id: str, location: str, processor_id: str, file_path: str):
Expand Down

0 comments on commit 1b24bfd

Please sign in to comment.