(source: str)
| 117 | |
| 118 | |
| 119 | def _md(source: str) -> dict[str, Any]: |
| 120 | return { |
| 121 | "cell_type": "markdown", |
| 122 | "metadata": {}, |
| 123 | "source": source, |
| 124 | } |
| 125 | |
| 126 | |
| 127 | def _code(source: str, tags: Optional[list[str]] = None) -> dict[str, Any]: |
no outgoing calls
no test coverage detected