Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion checksit/readers/cdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def _safe_parse_value(self, value):
# Remove datatype suffixes and parse as list if commas are in value
return eval(
", ".join(
[part.strip().rstrip("bBcCfFiIlLsS") for part in value.split(",")]
[part.strip().rstrip("bBcCfFiIlLsSuU") for part in value.split(",")]
)
)

Expand Down