mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-03 20:33:35 +00:00

This PR resolves #1754 - function wrapper tries to use `cast` to convert kwargs into `str` but when a value is `None` `cast(str, None)` still returns `None` - fix replaces the conversion to simply using `str()` function call