From 29f0898e88bffaf21581b5acd3a809b4020adc47 Mon Sep 17 00:00:00 2001 From: Stanimira Vlaeva Date: Wed, 12 Feb 2025 11:57:31 +0200 Subject: [PATCH] fix: typo in the notebook --- template_notebook.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template_notebook.ipynb b/template_notebook.ipynb index f011315..0fd2679 100644 --- a/template_notebook.ipynb +++ b/template_notebook.ipynb @@ -613,7 +613,7 @@ "source": [ "reg_mongoclient = MongoClient(new_connection)\n", "reg_collection = reg_mongoclient[encrypted_database_name][encrypted_collection_name] \n", - "find_result = reg_colloection.find_one({\"patientRecord.ssn\": \"987-65-4320\"})\n", + "find_result = reg_collection.find_one({\"patientRecord.ssn\": \"987-65-4320\"})\n", "print(find_result)" ] },