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

fix: moves import statement inside region tags #71

Merged
merged 1 commit into from Dec 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions samples/snippets/process_document_sample_v1beta3.py
Expand Up @@ -13,8 +13,6 @@
# limitations under the License.
#

from google.cloud import documentai_v1beta3 as documentai

# [START documentai_process_document]

# TODO(developer): Uncomment these variables before running the sample.
Expand All @@ -27,6 +25,8 @@
def process_document_sample(
project_id: str, location: str, processor_id: str, file_path: str
):
from google.cloud import documentai_v1beta3 as documentai

# Instantiates a client
client = documentai.DocumentProcessorServiceClient()

Expand Down