Skip to content

Commit 7b296b7

Browse files
committed
#39266: fix lint issue
1 parent 28e546b commit 7b296b7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/sage/graphs/digraph_generators.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,13 +1042,15 @@ def DeBruijn(self, k, n, vertices='strings', immutable=True):
10421042

10431043
if not n:
10441044
multiedges = True
1045+
10451046
def edges():
10461047
v = W[0]
10471048
vs = v.string_rep()
10481049
return ((vs, vs, a.string_rep()) for a in A)
10491050

10501051
else:
10511052
multiedges = False
1053+
10521054
def edges():
10531055
for w in W:
10541056
ww = w[1:]

0 commit comments

Comments
 (0)