(self)
| 48 | return self.root.get(key, default) |
| 49 | |
| 50 | def items(self) -> list[tuple[str, PromptBlock]]: |
| 51 | return list(self.root.items()) |
| 52 | |
| 53 | |
| 54 | def complete_prompt_blocks(prompt: CustomPrompt, default_blocks: Mapping[str, int]) -> CustomPrompt: |
no outgoing calls
no test coverage detected