Skip to content

Commit 5fde25a

Browse files
kesmit13Copilot
andauthored
Update singlestoredb/ibis_extras/__init__.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 87f78c2 commit 5fde25a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlestoredb/ibis_extras/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def _check_collisions(cls: type, mixin: type) -> None:
5353
name
5454
for name in dir(mixin)
5555
if not name.startswith('_')
56-
and isinstance(getattr(type(mixin), name, None), property)
56+
and isinstance(getattr(mixin, name, None), property)
5757
}
5858
mixin_members = mixin_attrs | mixin_props
5959

0 commit comments

Comments
 (0)