From 3f074cd975ba2d4269540b4e838059fc0c840279 Mon Sep 17 00:00:00 2001 From: Saatvik Rao Date: Tue, 12 Mar 2024 01:39:48 +0530 Subject: [PATCH] removed unnecessary return statement --- src/sage/graphs/orientations.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/sage/graphs/orientations.py b/src/sage/graphs/orientations.py index 4be9802df83..98a78c19fa0 100644 --- a/src/sage/graphs/orientations.py +++ b/src/sage/graphs/orientations.py @@ -263,9 +263,6 @@ def helper(G, globO, m, k): relabeled_graph = Graph([(reverse_vertex_labels[u], reverse_vertex_labels[v], label) for (u, v), label in orientation.items()]) yield relabeled_graph - # output the orientations - return orientations - def strong_orientations_iterator(G): r"""