Skip to content

Commit

Permalink
fix snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
TakaValley committed Mar 21, 2024
1 parent d3e3248 commit 968799e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ For best results, you should only analyze documents of the same document type th
from azure.core.credentials import AzureKeyCredential
from azure.ai.documentintelligence import DocumentIntelligenceClient
from azure.ai.documentintelligence.models import AnalyzeResult
from helper import utils

endpoint = os.environ["DOCUMENTINTELLIGENCE_ENDPOINT"]
key = os.environ["DOCUMENTINTELLIGENCE_API_KEY"]
Expand Down Expand Up @@ -467,7 +466,7 @@ if result.documents:
)
row_data = list(map(extract_value_by_col_name, col_names))
table_rows.append(row_data)
utils.print_table(col_names, table_rows)
print_table(col_names, table_rows)

print("------------------------------------")
```
Expand Down

0 comments on commit 968799e

Please sign in to comment.