From e6dbe4ea4d9eb5a70bec7d66855c5964b5ab3055 Mon Sep 17 00:00:00 2001 From: Nima Date: Fri, 24 Nov 2023 15:00:06 +0100 Subject: [PATCH] fix: readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5bff6a1..3eee3d5 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ from partialjson.json_parser import JSONParser parser = JSONParser() incomplete_json = '{"name": "John", "age": 30, "is_student": false, "courses": ["Math", "Science"' -print("Testing with incomplete JSON string:", parser.parse(incomplete_json)) +print(parser.parse(incomplete_json)) +# {'name': 'John', 'age': 30, 'is_student': False, 'courses': ['Math', 'Science']} ``` ### Installation