From de24f366b40fd8707cb299ea847ab912cf75a8b4 Mon Sep 17 00:00:00 2001 From: Rohit Chatterjee Date: Sat, 30 Dec 2023 14:55:59 +0530 Subject: [PATCH] reorder run --- ddpui/management/commands/showentities.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ddpui/management/commands/showentities.py b/ddpui/management/commands/showentities.py index f34ba973..fd62154b 100644 --- a/ddpui/management/commands/showentities.py +++ b/ddpui/management/commands/showentities.py @@ -96,14 +96,14 @@ def show_org_entities(self, org: Org): print(f"{org.slug}") self.show_orgprefectblocks(org) print("") - self.show_manual_dataflows(org) - print("") - self.show_orchestrated_dataflows(org) - print("") self.show_org_tasks(org) print("") + self.show_manual_dataflows(org) + print("") self.show_v1_manual_dataflows(org) print("") + self.show_orchestrated_dataflows(org) + print("") self.show_v1_orchestrated_dataflows(org) print("=" * 80)