Skip to content

Commit

Permalink
internal name-neaten
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Oct 20, 2024
1 parent 9f31496 commit 59beaa0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apis/python/src/tiledbsoma/_tdb_handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,13 @@ def from_soma_group_entry(cls, obj: Tuple[str, str]) -> "GroupEntry":
raise SOMAError(f"internal error: unknown object type {uri}")


_GrpType = TypeVar("_GrpType", bound=clib.SOMAGroup)
_ClibGroupType = TypeVar("_ClibGroupType", bound=clib.SOMAGroup)


class SOMAGroupWrapper(Wrapper[_GrpType]):
class SOMAGroupWrapper(Wrapper[_ClibGroupType]):
"""Base class for Pybind11 SOMAGroupWrapper handles."""

_GROUP_WRAPPED_TYPE: Type[_GrpType]
_GROUP_WRAPPED_TYPE: Type[_ClibGroupType]

clib_type = "SOMAGroup"

Expand Down Expand Up @@ -331,13 +331,13 @@ class SceneWrapper(SOMAGroupWrapper[clib.SOMAScene]):
_GROUP_WRAPPED_TYPE = clib.SOMAScene


_ArrType = TypeVar("_ArrType", bound=clib.SOMAArray)
_CLibArrayType = TypeVar("_CLibArrayType", bound=clib.SOMAArray)


class SOMAArrayWrapper(Wrapper[_ArrType]):
class SOMAArrayWrapper(Wrapper[_CLibArrayType]):
"""Base class for Pybind11 SOMAArrayWrapper handles."""

_ARRAY_WRAPPED_TYPE: Type[_ArrType]
_ARRAY_WRAPPED_TYPE: Type[_CLibArrayType]

clib_type = "SOMAArray"

Expand Down

0 comments on commit 59beaa0

Please sign in to comment.