(config: dict[str, Any])
| 39 | |
| 40 | |
| 41 | def _dwarf_config(config: dict[str, Any]) -> dict[str, Any]: |
| 42 | dwarf = config.get("dwarf", {}) |
| 43 | if isinstance(dwarf, dict): |
| 44 | return cast(dict[str, Any], dwarf) |
| 45 | return {} |
| 46 | |
| 47 | |
| 48 | def _dwarf_prefix(dwarf: dict[str, Any], key: str, default: str) -> str: |
no test coverage detected