medicafe 0.250816.0__py3-none-any.whl → 0.250819.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
MediCafe/__init__.py CHANGED
@@ -27,7 +27,7 @@ Smart Import System:
27
27
  api_suite = get_api_access()
28
28
  """
29
29
 
30
- __version__ = "0.250816.0"
30
+ __version__ = "0.250819.0"
31
31
  __author__ = "Daniel Vidaud"
32
32
  __email__ = "daniel@personalizedtransformation.com"
33
33
 
@@ -202,7 +202,7 @@ def write_output_file(document_segments, output_directory, endpoint_key, input_f
202
202
 
203
203
  # Write the document to the output file
204
204
  try:
205
- with open(new_output_file_path, 'w') as output_file:
205
+ with open(new_output_file_path, 'w', encoding='utf-8') as output_file:
206
206
  output_file.write('\n'.join(document_segments))
207
207
  MediLink_ConfigLoader.log("Successfully converted and saved to {}".format(new_output_file_path), config, level="INFO")
208
208
  return new_output_file_path