Skip to content

Commit

Permalink
nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
hbertrand committed Oct 25, 2023
1 parent 3ca4e5c commit a89175b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buster/documents_manager/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a89175b

Please sign in to comment.