[DOCS] Typo fix in Conversion Parameters article for master (#23864)

Added missing comma in Python code in the Conversion Parameters article.

Jira: 137610
This commit is contained in:
Maciej Smyk 2024-04-05 16:25:36 +02:00 committed by GitHub
parent 85441b5f99
commit 9660502d3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ Providing just a path to the model or model object as ``openvino.convert_model``
import openvino as ov
ov_model = ov.convert_model(original_model)
ov.save_model(ov_model, 'model.xml' compress_to_fp16=False)
ov.save_model(ov_model, 'model.xml', compress_to_fp16=False)
.. tab-item:: CLI
:sync: cli