Return a dict with lower-camelcase keys and non-None values..
(**kwargs: TypeJsonValue)
| 408 | |
| 409 | |
| 410 | def parse_options(**kwargs: TypeJsonValue) -> Dict[str, TypeJsonValueNoNone]: |
| 411 | """Return a dict with lower-camelcase keys and non-None values..""" |
| 412 | return {camelize(key): value for key, value in kwargs.items() if value is not None} |
| 413 | |
| 414 | |
| 415 | def remove_empty(**kwargs: TypeJsonValue) -> Dict[str, TypeJsonValueNoNone]: |