From 4ea419d7ffcc565cbcbd7191006139404697b628 Mon Sep 17 00:00:00 2001 From: RadhaKrishnan Date: Thu, 24 Jul 2025 22:53:23 +0530 Subject: [PATCH] Fix CodeRabbit feedback: corrupted docstring and manual installation instructions --- apps/backend/install_docx_deps.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/backend/install_docx_deps.py b/apps/backend/install_docx_deps.py index 149b339..8026df4 100644 --- a/apps/backend/install_docx_deps.py +++ b/apps/backend/install_docx_deps.py @@ -1,8 +1,6 @@ #!/usr/bin/env python3 """ -Install script for print("Some dependencies failed to install.") - print("Please check the error messages above and try installing manually:") - print(" pip install 'markitdown[all]==0.1.2'")sing DOCX dependencies. +Install script for missing DOCX dependencies. Fixes issue #409: Error processing file conversion DocxConverter """ @@ -50,7 +48,7 @@ def main(): else: print("\nSome dependencies failed to install.") print("Please check the error messages above and try installing manually:") - print(" pip install python-docx==1.2.0 lxml==5.4.0") + print(" pip install 'markitdown[all]==0.1.2'") sys.exit(1) if __name__ == "__main__":