Explorar el Código

refactor(config_manager): remove coordinate_precision setting from output defaults

- Eliminated the 'coordinate_precision' setting from the output defaults in the ConfigManager class to streamline configuration options.
- This change simplifies the configuration structure, focusing on essential output settings for the OCR tools.
zhch158_admin hace 2 días
padre
commit
6ef5abd3a5
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      ocr_tools/universal_doc_parser/core/config_manager.py

+ 0 - 1
ocr_tools/universal_doc_parser/core/config_manager.py

@@ -126,7 +126,6 @@ class ConfigManager:
             'save_markdown': True,
             'save_html': True,
             'save_images': {'layout': True, 'ocr': True, 'table_cells': True},
-            'coordinate_precision': 2
         }
         config['output'] = cls._merge_defaults(
             config.get('output', {}), output_defaults