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}]`; }