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

Commit

Permalink
fixed indentation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivo-Maffei committed Aug 3, 2020
1 parent 6f3754b commit 7754591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/graphs/generators/distance_regular.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def cocliques_HoffmannSingleton():
edges = []
for c1, c2 in itertools.combinations(cocliques, 2):
if len(c1.intersection(c2)) == 8:
edges.append((c1, c2))
edges.append((c1, c2))

G = Graph(edges, format="list_of_edges")
return G
Expand Down

0 comments on commit 7754591

Please sign in to comment.