(cells: list[dict[str, Any]])
| 138 | |
| 139 | |
| 140 | def _notebook(cells: list[dict[str, Any]]) -> dict[str, Any]: |
| 141 | return { |
| 142 | "nbformat": 4, |
| 143 | "nbformat_minor": 5, |
| 144 | "metadata": { |
| 145 | "kernelspec": { |
| 146 | "display_name": "Python 3", |
| 147 | "language": "python", |
| 148 | "name": "python3", |
| 149 | }, |
| 150 | }, |
| 151 | "cells": cells, |
| 152 | } |
| 153 | |
| 154 | |
| 155 | # --------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected