From 41ade56723a123df21205f9082e34785584ef571 Mon Sep 17 00:00:00 2001 From: Erez Sh Date: Fri, 26 Jun 2020 00:40:12 +0300 Subject: [PATCH] Typo --- examples/error_puppet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/error_puppet.py b/examples/error_puppet.py index a5e0857..87d69e1 100644 --- a/examples/error_puppet.py +++ b/examples/error_puppet.py @@ -28,7 +28,7 @@ def ignore_errors(e): def main(): s = "[0 1, 2,, 3,,, 4, 5 6 ]" res = json_parser.parse(s, on_error=ignore_errors) - print(res) # prints [1.0, 2.0, 3.0, 4.0, 5.0, 6.0] + print(res) # prints [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0] main()