/ open-webui.git
/ app
/ env
/ lib
/ python3.11
/ site-packages
/ moto
/ appmesh
/ utils
/ common.py
Run
Starting...
Stop
View File
Save
from typing import Any, Dict def clean_dict(obj: Dict[str, Any]) -> Dict[str, Any]: # type: ignore[misc] return { key: value for key, value in obj.items() if value is not None and value != [] }
Memory