Skip to content

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 authored and pull[bot] committed Mar 25, 2024
1 parent 3e92de6 commit c10f2d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions documentai/snippets/process_document_sample_v1beta3.py
Original file line number Diff line number Diff line change
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 documentai/snippets/quickstart_sample_v1beta3.py
Original file line number Diff line number Diff line change
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 c10f2d5

Please sign in to comment.