Fix TypeError when channel/acquisition metadata contains None values#169
Merged
cbrnr merged 2 commits intoxdf-modules:mainfrom Mar 31, 2026
Merged
Conversation
When an XDF file has channel or acquisition metadata fields present but
with null values, playback_lsl.py would crash with:
TypeError: descriptor 'encode' for 'str' objects doesn't apply to a 'NoneType' object
because pylsl's append_child_value calls str.encode() on the value.
Add a None-check before each append_child_value call, and wrap the value
in str() so that non-string scalars (e.g. numeric precision fields) are
also handled safely.
Contributor
Author
|
cc @cbrnr |
Contributor
|
Thanks! LGTM! Can you add a changelog entry please? |
Contributor
|
Thanks @sappelhoff! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Disclaimer: I created this PR and the content using Claude.
Summary
playback_lsl.pycrashes with aTypeErrorwhen an XDF file contains channel or acquisition metadata fields that are present but haveNonevalues:This happens in
pylsl'sappend_child_value, which callsstr.encode()on the value passed to it.Fix
None(guard added to both theacquisitionandchannelloops)str()so non-string scalars (e.g. a numericprecisionfield) are also handled correctlyTest plan
Nonechannel metadata (e.g. a missingunitfield) — previously crashed, now streams successfully