### Function parameters example ```py def write(collection, tabular, *, exclude_none: bool = False): ... ``` ### Usage example ```py write(collection, df, exclude_none=True) ``` ### How Replacing https://github.com/mongodb-labs/mongo-arrow/blob/main/bindings/python/pymongoarrow/api.py#L390 with ```py if exclude_none: yield {k:v for k, v in row.items() if v is not None} else: yield row ``` did the job.