(key: str)
| 666 | |
| 667 | |
| 668 | def _get_root(key: str) -> tuple[dict[str, Any], str]: |
| 669 | path = key.split(".") |
| 670 | cursor = _global_config |
| 671 | for p in path[:-1]: |
| 672 | cursor = cursor[p] |
| 673 | return cursor, path[-1] |
| 674 | |
| 675 | |
| 676 | def _get_deprecated_option(key: str): |
no test coverage detected