From f55f514d68d1adfdeb71b4998d13c9ffb168b33a Mon Sep 17 00:00:00 2001 From: Alex Goldman <90787028+Goldmaa@users.noreply.github.com> Date: Fri, 15 Mar 2024 08:19:16 +0000 Subject: [PATCH] Update README.md TYPO (#59) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfadf6b..93351c1 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ Write dicts ```python with DDB.at("users").session() as (session, users): users["u3"]["age"] = 99 -print(DDB.at("users", key="u3").read()["age]) +print(DDB.at("users", key="u3").read()["age"]) >>> 99 ``` > If you do not call session.write(), changes will not be written to disk!