Represents a single cell in a notebook with its language.
| 21 | |
| 22 | |
| 23 | class CellInfo(NamedTuple): |
| 24 | """Represents a single cell in a notebook with its language.""" |
| 25 | cell_index: int |
| 26 | language: str |
| 27 | source: str |
| 28 | |
| 29 | |
| 30 | _SQL_TABLE_RE = re.compile( |
no outgoing calls
no test coverage detected