small change, removing default kwarg in generate

This commit is contained in:
2020-06-13 12:03:16 +02:00
parent 2743facd5f
commit dd59bf6cc0
4 changed files with 18 additions and 18 deletions

View File

@@ -3,7 +3,7 @@ import random
from app.check import check
def generate(bits=8):
def generate(bits):
return "".join([random.choice("10") for i in range(bits)])