Skip to content

Commit d7b9a6b

Browse files
committed
fixing document conversion example typo
1 parent 76ab8c5 commit d7b9a6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/document_conversion_v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Example of retrieving html or plain text
1212
with open(join(dirname(__file__), '../resources/example.html'), 'r') as document:
1313
config = {'conversion_target': DocumentConversionV1.NORMALIZED_HTML}
14-
print(document_conversion.convert_document(document=document, config=config, media_type='text/html')).text
14+
print(document_conversion.convert_document(document=document, config=config, media_type='text/html').text)
1515

1616
# Example with JSON
1717
with open(join(dirname(__file__), '../resources/example.html'), 'r') as document:

0 commit comments

Comments
 (0)