Skip to content

Commit 702e776

Browse files
committed
sagemath#39269: fix indentation
1 parent 037b405 commit 702e776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/graphs/digraph_generators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1755,7 +1755,7 @@ def RandomDirectedGNM(self, n, m, loops=False, immutable=False):
17551755

17561756
if is_dense:
17571757
edges = ((u, v) for u in range(n) for v in range(n)
1758-
if ((u != v) or loops) and (v not in adj[u]))
1758+
if (u != v or loops) and v not in adj[u])
17591759
return DiGraph([range(n), edges], format='vertices_and_edges',
17601760
loops=loops, immutable=immutable)
17611761

0 commit comments

Comments
 (0)