Skip to content

Commit

Permalink
Fix names of small graphs (#7055)
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknw authored and jarrodmillman committed Oct 27, 2023
1 parent e37b0aa commit 05f9234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions networkx/generators/small.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def cubical_graph(create_using=None):
},
create_using=create_using,
)
G.name = ("Platonic Cubical Graph",)
G.name = "Platonic Cubical Graph"
return G


Expand Down Expand Up @@ -809,7 +809,7 @@ def tetrahedral_graph(create_using=None):
"""
G = complete_graph(4, create_using)
G.name = "Platonic Tetrahedral graph"
G.name = "Platonic Tetrahedral Graph"
return G


Expand Down

0 comments on commit 05f9234

Please sign in to comment.