Method
__init__
(self, name: str | None = None)
Source from the content-addressed store, hash-verified
| 5551 | _last_shape: Shape |
| 5552 | |
| 5553 | def __init__(self, name: str | None = None) -> None: |
| 5554 | |
| 5555 | self._name = name if name else None |
| 5556 | |
| 5557 | self._tracked = set() |
| 5558 | self._deleted = [] |
| 5559 | self._modified = {} |
| 5560 | self._generated = {} |
| 5561 | self._images = {} |
| 5562 | self._first = {} |
| 5563 | self._last = {} |
| 5564 | self._first_shape = compound() |
| 5565 | self._last_shape = compound() |
| 5566 | |
| 5567 | def _get(self, d: dict[Shape, Shape], k: Shape) -> Shape: |
| 5568 | |
Tested by
no test coverage detected