Skip to content

Commit b93d092

Browse files
committed
internal name-neaten
1 parent 323d875 commit b93d092

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apis/python/src/tiledbsoma/_tdb_handles.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -259,13 +259,13 @@ def from_soma_group_entry(cls, obj: Tuple[str, str]) -> "GroupEntry":
259259
raise SOMAError(f"internal error: unknown object type {uri}")
260260

261261

262-
_GrpType = TypeVar("_GrpType", bound=clib.SOMAGroup)
262+
_ClibGroupType = TypeVar("_ClibGroupType", bound=clib.SOMAGroup)
263263

264264

265-
class SOMAGroupWrapper(Wrapper[_GrpType]):
265+
class SOMAGroupWrapper(Wrapper[_ClibGroupType]):
266266
"""Base class for Pybind11 SOMAGroupWrapper handles."""
267267

268-
_GROUP_WRAPPED_TYPE: Type[_GrpType]
268+
_GROUP_WRAPPED_TYPE: Type[_ClibGroupType]
269269

270270
clib_type = "SOMAGroup"
271271

@@ -331,13 +331,13 @@ class SceneWrapper(SOMAGroupWrapper[clib.SOMAScene]):
331331
_GROUP_WRAPPED_TYPE = clib.SOMAScene
332332

333333

334-
_ArrType = TypeVar("_ArrType", bound=clib.SOMAArray)
334+
_CLibArrayType = TypeVar("_CLibArrayType", bound=clib.SOMAArray)
335335

336336

337-
class SOMAArrayWrapper(Wrapper[_ArrType]):
337+
class SOMAArrayWrapper(Wrapper[_CLibArrayType]):
338338
"""Base class for Pybind11 SOMAArrayWrapper handles."""
339339

340-
_ARRAY_WRAPPED_TYPE: Type[_ArrType]
340+
_ARRAY_WRAPPED_TYPE: Type[_CLibArrayType]
341341

342342
clib_type = "SOMAArray"
343343

0 commit comments

Comments
 (0)