From 0885ae2ebe2cce0b4c381a81874a673d9f5e3893 Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Sat, 15 Jan 2022 15:28:53 +0300 Subject: [PATCH] Update README.md --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fea06a0..3214bb3 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,9 @@ data = db.all() print(data) ``` Output -`{'test': 123}` +``` +{'test': 123} +``` ## `db.rem("test")` Code ```python @@ -58,5 +60,7 @@ data = db.all() print(data) ``` Output -`{'test': 123} -{}` +``` +{'test': 123} +{} +```