(pairs: Iterable[Tuple[str, str]])
| 21 | |
| 22 | |
| 23 | def interpret_nested_json(pairs: Iterable[Tuple[str, str]]) -> dict: |
| 24 | context = None |
| 25 | for key, value in pairs: |
| 26 | context = interpret(context, key, value) |
| 27 | return wrap_with_dict(context) |
| 28 | |
| 29 | |
| 30 | def interpret(context: Any, key: str, value: Any) -> Any: |
no test coverage detected