patx/mongokv

Fix code block formatting in README

Commit 880ec1f · patx · 2025-12-16T20:51:38-05:00

Changeset
880ec1ff96950d9bcb3f6ca00b6262c10c3476a8
Parents
abdc360ef3ebba6b9318796391db12cceb28e1f6

View source at this commit

Fix code block formatting in README

Updated code block formatting for usage and install sections.

Comments

No comments yet.

Log in to comment

Diff

diff --git a/README.md b/README.md
index 9a9bfea..a4e5880 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ backed by PyMongo that provides a dead-simple Redis-like API (`set`, `get`, etc)
 
 ### Usage
 
-```
+```python
 >>> from mongokv import Mkv
 
 >>> db = Mkv('mongodb://localhost:27071')
@@ -18,7 +18,7 @@ backed by PyMongo that provides a dead-simple Redis-like API (`set`, `get`, etc)
 
 ### Install
 
-```
-pip3 install mongokv
+```bash
+$ pip3 install mongokv
 ```