(dictionary: Dict[str, Any])
| 45 | |
| 46 | |
| 47 | def sorted_items(dictionary: Dict[str, Any]) -> Iterator[Tuple[str, Any]]: |
| 48 | keys = sorted(dictionary.keys()) |
| 49 | for k in keys: |
| 50 | yield k, dictionary[k] |
| 51 | |
| 52 | |
| 53 | class _ConsolidatedOptimState: |
no outgoing calls
no test coverage detected