From f14fb67fd925ef11ff90f5faac253012e4cb6a42 Mon Sep 17 00:00:00 2001 From: Filip Wieland Date: Sun, 16 Sep 2018 12:16:15 +0100 Subject: [PATCH] Fix database.py docstring --- lib/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/database.py b/lib/database.py index 55d7871..0d30169 100644 --- a/lib/database.py +++ b/lib/database.py @@ -6,7 +6,7 @@ Values can be anything json can store, including a dict Usage: import database -with database.open() as db: +with database.Database() as db: print(db.get("hello", "default")) db.set("foo", "world") db.delete("bar")