Skip to content

Commit 7a2dd98

Browse files
committed
chore: rename class_type for clarity
1 parent 786f92e commit 7a2dd98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vbl_aquarium/utils/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def get_model_classes(module: ModuleType) -> list[type[VBLBaseModel]]:
2626
A list of all model classes in the module.
2727
"""
2828
return [
29-
class_object
30-
for _, class_object in getmembers(module, isclass)
31-
if issubclass(class_object, VBLBaseModel) and class_object != VBLBaseModel
29+
class_type
30+
for _, class_type in getmembers(module, isclass)
31+
if issubclass(class_type, VBLBaseModel) and class_type != VBLBaseModel
3232
]
3333

3434

0 commit comments

Comments
 (0)