Skip to content

Commit a501333

Browse files
meatballsmarcharper
authored andcommitted
Fix PEP8 errors
1 parent 86380c3 commit a501333

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

axelrod/graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __repr__(self):
7575
return s
7676

7777

78-
## Example Graphs
78+
# Example Graphs
7979

8080

8181
def cycle(length, directed=False):
@@ -95,7 +95,7 @@ def cycle(length, directed=False):
9595
graph = Graph(directed=directed)
9696
edges = []
9797
for i in range(length - 1):
98-
edges.append((i, i+1))
98+
edges.append((i, i + 1))
9999
edges.append((length - 1, 0))
100100
graph.add_edges(edges)
101101
return graph

0 commit comments

Comments
 (0)