Skip to content

Commit

Permalink
minor [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 committed Dec 10, 2024
1 parent 75d15f0 commit 3cb4840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/management/commands/edges.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def handle(self, *args, **kwargs):
edge_kind = y.__name__.lower()
source_kind = y.get_related_entity_classa().__name__.lower()
target_kind = y.get_related_entity_classb().__name__.lower()
for x in tqdm(y.objects.all()[:5], total=y.objects.all().count()):
for x in tqdm(y.objects.all(), total=y.objects.all().count()):
source_obj = x.get_related_entity_instancea()
target_obj = x.get_related_entity_instanceb()
item = {
Expand Down

0 comments on commit 3cb4840

Please sign in to comment.