From a89175b7f786862b8b8e511af4b8d43da7aee3cc Mon Sep 17 00:00:00 2001 From: hbertrand Date: Wed, 25 Oct 2023 14:16:03 -0400 Subject: [PATCH] nitpick --- buster/documents_manager/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buster/documents_manager/service.py b/buster/documents_manager/service.py index 920c7bc..0389972 100644 --- a/buster/documents_manager/service.py +++ b/buster/documents_manager/service.py @@ -87,7 +87,7 @@ def drop_db(self): For Pinecone, this means deleting everything in the namespace. For Mongo DB, this means dropping the database. However this needs to be done manually through the GUI. """ - confirmation = input("Dropping the database is irreversible. Are you sure you want to proceed? (Y/n): ") + confirmation = input("Dropping the database is irreversible. Are you sure you want to proceed? (y/N): ") if confirmation.strip().lower() == "y": self.index.delete(namespace=self.namespace, delete_all=True)