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
Since association defaults to object name, if a name is specified the source name should be applied to the destination object.
# If it's an association to or from a multiple then pluralize the nameifdest_element.get('name') isnotNone:
association.source_name=dest_element.get('name')
else:
...
ifsource_element.get('name') isnotNone:
association.destination_name=source_element.get('name')
else:
...```
The text was updated successfully, but these errors were encountered:
Since association defaults to object name, if a name is specified the source name should be applied to the destination object.
The text was updated successfully, but these errors were encountered: