Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac 21345 even better
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric Chapoton committed Aug 26, 2016
1 parent c9e7169 commit c3a83e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/graphs/generic_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -10822,7 +10822,7 @@ def edge_labels(self):
sage: G.edge_labels()
['x', 'z', 'a', 'out']
"""
return [l for u, v, l in self.edges()]
return [l for _, _, l in self.edges()]

def remove_multiple_edges(self):
"""
Expand Down

0 comments on commit c3a83e0

Please sign in to comment.