We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b9f725 + 03a7c3f commit 578a643Copy full SHA for 578a643
1 file changed
yamcs-client/src/yamcs/client/core/helpers.py
@@ -190,6 +190,8 @@ def to_named_object_ids(
190
def to_argument_value(value, force_string):
191
if isinstance(value, (bytes, bytearray)):
192
return binascii.hexlify(value).decode("ascii")
193
+ elif isinstance(value, str):
194
+ return value
195
elif isinstance(value, collections.abc.Mapping):
196
# Careful to do the JSON dump only at the end,
197
# and not at every level of a nested hierarchy
0 commit comments