This commit is contained in:
Luke Rogers 2012-05-09 13:26:52 +12:00
parent f0c23808f9
commit 88723d21a4

View file

@ -11,7 +11,7 @@ def flip_simple(count):
heads += 1 heads += 1
else: else:
tails += 1 tails += 1
return [heads, tails] return heads, tails
@hook.command(autohelp=False) @hook.command(autohelp=False)