We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d282b68 commit 2fd97ddCopy full SHA for 2fd97dd
reproschema/redcap2reproschema.py
@@ -421,7 +421,7 @@ def process_row(
421
422
elif key in ADDITIONAL_NOTES_LIST and value:
423
# Convert value to string, handling NaN explicitly
424
- value_str = "NaN" if pd.isna(value) else str(value).strip()
+ value_str = str(value).strip()
425
if not value_str: # Skip empty strings
426
continue
427
notes_obj = {
0 commit comments