From c58fbbb8fa635486a605c01717c6710a77b8121b Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Tue, 4 Nov 2025 11:01:22 +0100 Subject: [PATCH] added another comment --- dap/utils/bsreadext.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dap/utils/bsreadext.py b/dap/utils/bsreadext.py index ea7e823..312cfa8 100644 --- a/dap/utils/bsreadext.py +++ b/dap/utils/bsreadext.py @@ -18,6 +18,7 @@ def pack_bsread_data(orig, prefix, skip=None): if k in skip: continue if isinstance(v, bool): + # bsread expects bools as ints v = int(v) elif isinstance(v, list): # bsread fails for empty lists and non-1D lists