Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit fixes a warning that is generated by the sqlalchemy:
SAWarning: relationship 'DbLink.input' will copy column db_dbnode.id to column db_dblink.input_id, which conflicts with relationship(s): 'DbNode.inputs_q' (copies db_dbnode.id to db_dblink.input_id), 'DbNode.outputs_q' (copies db_dbnode.id to db_dblink.input_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. To silence this warning, add the parameter 'overlaps="inputs_q,outputs_q"' to the 'DbLink.input' relationship.
Note a similar fix was made in aldjemy/aldjemy#199