Skip to content

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 authored and holtskinner committed Jan 3, 2023
1 parent c755ff9 commit 85ecf86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions process_document_sample_v1beta3.py
Original file line number Diff line number Diff line change
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 85ecf86

Please sign in to comment.