From 2fafd531814728ddef85e6827cb059cd97ea2090 Mon Sep 17 00:00:00 2001 From: Thilo Krumrey Date: Fri, 16 May 2025 15:15:35 +0200 Subject: [PATCH] Fixes missing unicode decode. This error was unobserved, because normal qkit string data is parsed as json. --- src/qkit/gui/qviewkit/PlotWindow_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qkit/gui/qviewkit/PlotWindow_lib.py b/src/qkit/gui/qviewkit/PlotWindow_lib.py index 3ae7eccc1..945f072aa 100644 --- a/src/qkit/gui/qviewkit/PlotWindow_lib.py +++ b/src/qkit/gui/qviewkit/PlotWindow_lib.py @@ -771,7 +771,7 @@ def _display_string(ds): data = np.array(ds) txt = "" for d in data: - txt += d + '\n' + txt += d.decode('utf-8') + '\n' return txt