From 793386be034c80e1f49aad5d8834c53e45440a97 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 5 Feb 2025 10:50:00 +0100 Subject: [PATCH] fix(python): render Serializable as dict --- src/format_python.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/format_python.js b/src/format_python.js index 36bf7199103..3b1cdd2fb8a 100644 --- a/src/format_python.js +++ b/src/format_python.js @@ -113,6 +113,7 @@ class PythonFormatter { case 'Date': return '[datetime]'; case 'long': return '[int]'; case 'Buffer': return '[bytes]'; + case 'Serializable': return '[Dict]'; } return `[${text}]`; }