From ee79ee98a08a2b3ea1df2109874f54a2ef17505d Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Tue, 4 Nov 2025 11:32:15 +0100 Subject: [PATCH] actually do send Nones --- dap/utils/bsreadext.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/dap/utils/bsreadext.py b/dap/utils/bsreadext.py index 312cfa8..41dcdbc 100644 --- a/dap/utils/bsreadext.py +++ b/dap/utils/bsreadext.py @@ -23,8 +23,6 @@ def pack_bsread_data(orig, prefix, skip=None): elif isinstance(v, list): # bsread fails for empty lists and non-1D lists v = list_to_array(v) - if v is None: - continue data[f"{prefix}:{k}"] = v return data