Fix database.py docstring

master
Filip Wieland 2018-09-16 12:16:15 +01:00
parent 3c228d161b
commit f14fb67fd9
1 changed files with 1 additions and 1 deletions

View File

@ -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")