(
editor: "InteractiveCodeEditor", # noqa: F821
instruction: str,
)
| 183 | |
| 184 | |
| 185 | async def _code_preview( |
| 186 | editor: "InteractiveCodeEditor", # noqa: F821 |
| 187 | instruction: str, |
| 188 | ) -> dict: |
| 189 | return await editor.preview_instruction(instruction) |
| 190 | |
| 191 | |
| 192 | def _print_edit_result(result: dict) -> None: |
no test coverage detected