(text: str)
| 50 | |
| 51 | @staticmethod |
| 52 | def _is_python_code_block(text: str) -> bool: |
| 53 | text = text.strip() |
| 54 | return text.startswith("```python") and text.endswith("```") |
| 55 | |
| 56 | @staticmethod |
| 57 | def _extract_python_code(text: str) -> str: |
no outgoing calls
no test coverage detected