Skip to content

Commit

Permalink
[python] Fix soma_type on SparseNDArray. (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
thetorpedodog authored Jan 26, 2023
1 parent 1b9200b commit 10865d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-spec/src/somacore/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class SparseNDArray(NDArray, metaclass=abc.ABCMeta):
"""A N-dimensional array stored sparsely."""

__slots__ = ()
soma_type: Final = "SparseNDArray" # type: ignore[misc]
soma_type: Final = "SOMASparseNDArray" # type: ignore[misc]
is_sparse: Final = True # type: ignore[misc]

@abc.abstractmethod
Expand Down

0 comments on commit 10865d1

Please sign in to comment.