From 9259405a00de7e6c3197d563b3cfab9eb3997d73 Mon Sep 17 00:00:00 2001 From: linus-md Date: Sun, 17 Dec 2023 16:53:18 +0100 Subject: [PATCH] Fix formatting --- pandas/io/json/_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/json/_json.py b/pandas/io/json/_json.py index 3e7904168d3a0..258c73a0fc2de 100644 --- a/pandas/io/json/_json.py +++ b/pandas/io/json/_json.py @@ -768,7 +768,7 @@ def read_json( "d":{"0":"a","1":"b"},"e":{"0":15777504,"1":15777504}}''' >>> df = pd.read_json(StringIO(data), dtype_backend="numpy_nullable") >>> print(df) - index a b c d e + index a b c d e 0 0 1 2.5 True a 15777504 1 1 4.5 False b 15777504 """