Skip to content

Commit d7c5116

Browse files
committed
"Reformatted per new black version"
1 parent 5286438 commit d7c5116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/displayio_sh1107_game_of_life.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def apply_life_rule(old, new):
6161

6262

6363
def randomize(output, fraction=0.33):
64-
""" Fill 'fraction' out of all the cells. """
64+
"""Fill 'fraction' out of all the cells."""
6565
for i in range(output.height * output.width):
6666
output[i] = random.random() < fraction
6767

0 commit comments

Comments
 (0)