From c65dcff9918c831d040f4b2135c877d747952196 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Sun, 2 Feb 2025 09:47:05 +0100 Subject: [PATCH] Fixed a typo --- lightrag/api/lightrag_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/api/lightrag_server.py b/lightrag/api/lightrag_server.py index 5e3c9585..f7770c57 100644 --- a/lightrag/api/lightrag_server.py +++ b/lightrag/api/lightrag_server.py @@ -556,7 +556,7 @@ class DocumentManager: def __init__( self, input_dir: str, - supported_extensions: tuple = (".txt", ".md", ".pdf", ".docx", ".pptx", "xlsx"), + supported_extensions: tuple = (".txt", ".md", ".pdf", ".docx", ".pptx", ".xlsx"), ): self.input_dir = Path(input_dir) self.supported_extensions = supported_extensions