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

Commit

Permalink
fix: moves import statment inside region tags (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
telpirion committed Dec 9, 2020
1 parent bf3aba3 commit a04fbea
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit a04fbea

Please sign in to comment.