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
To avoid key errors in the Schema, we should replace
iffield["migratable"] and'seq_id'infieldand'collection_id'notinfield:
raiseValueError('If an entity is migratable, it must have a collection_id')
with
iffield.get("migratable") isTrueand'seq_id'infieldand'collection_id'notinfield:
raiseValueError('If an entity is migratable, it must have a collection_id')
To avoid key errors in the Schema, we should replace
with
As suggested by @tlamonthezie in LBAF PR 538
The text was updated successfully, but these errors were encountered: