We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d36b30 commit c654f78Copy full SHA for c654f78
django_postgresql_dag/models.py
@@ -539,7 +539,7 @@ def pre_save(new_edge):
539
540
if callable(pre_save):
541
rootside_edge = pre_save(rootside_edge)
542
-
+
543
rootside_edge.save()
544
545
if callable(post_save):
@@ -566,7 +566,7 @@ def pre_save(new_edge):
566
else:
567
edge.child.add_parent(node)
568
569
- # Remove the original edge in the database. Still remains in memory, though, as noted above.
+ # Remove the original edge in the database. Still remains in memory, though, as noted above.
570
edge.delete()
571
return rootside_edge, leafside_edge
572
0 commit comments