You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes the .parts property on tables returns an empty list even if the table has parts.
@schemaclassMyTable(dj.Manual):
definition=""" a: int --- b: int """classMyFirstPart(dj.Part):
definition=""" -> master --- c: int """classMySecondPart(dj.Part):
definition=""" -> master --- d: int """# MyTable().connection.dependencies.load() # Uncommenting this fixes the problemassertMyTable().parts(as_objects=True) is [] # Should error but doesn't
Reproducibility
LINUX
Python 3.8
DataJoint Version 0.12.9
The text was updated successfully, but these errors were encountered:
Bug Report
Description
Sometimes the
.parts
property on tables returns an empty list even if the table has parts.Reproducibility
The text was updated successfully, but these errors were encountered: