From 2440a987b26b4adbe51eddb76eab310d668ba7ab Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Tue, 14 Jul 2020 20:37:35 +0100 Subject: [PATCH] Tidy unknwon types and values --- python3/vimspector/variables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python3/vimspector/variables.py b/python3/vimspector/variables.py index eaed8bb..f6df06c 100644 --- a/python3/vimspector/variables.py +++ b/python3/vimspector/variables.py @@ -359,9 +359,9 @@ class VariablesView( object ): icon = '+' if ( variable.IsExpandable() and not variable.IsExpanded() ) else '-', name = variable.variable[ 'name' ], - type_ = variable.variable.get( 'type', '' ), + type_ = variable.variable.get( 'type', '' ), value = variable.variable.get( 'value', - '' ) ).split( '\n' ) ) + '' ) ).split( '\n' ) ) view.lines[ line ] = variable if variable.ShouldDrawDrillDown():