travel-planner-mcp / utils.py
rajsinghparihar
final commit
617e1d9
raw
history blame contribute delete
144 Bytes
def _remove_null_params(params: dict):
for p in list(params.keys()):
if not params[p]:
del params[p]
return params