rewrite (data): Increase Column flexibility.
New Column field types. Allow Column to be an attribute of a non-rowmodel. Add `references` field to Column. Add logging for registry attach. Add support for alternative join types.
This commit is contained in:
@@ -17,7 +17,7 @@ class Registry:
|
||||
|
||||
def __init_subclass__(cls, name=None):
|
||||
attached = []
|
||||
for name, member in cls.__dict__.items():
|
||||
for _, member in cls.__dict__.items():
|
||||
if isinstance(member, _Attachable):
|
||||
attached.append(member)
|
||||
cls._attached = attached
|
||||
|
||||
Reference in New Issue
Block a user