tiledbsoma.SparseNDArray.soma_type

SparseNDArray.soma_type: Final = 'SOMASparseNDArray'

A string describing the SOMA type of this object. This is constant.

This uses ClassVar since you can’t do abstract class properties. This is the equivalent, just without abc-based automatic verification. Overrides are marked Final with an ignore[misc] because mypy by default wants this to be mutable, and doesn’t like overriding the mutable member with a Final member.