fix unused variable

This commit is contained in:
Pavol Rusnak 2023-01-24 11:04:19 +00:00
parent 430698c763
commit 58a7098be5
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -27,7 +27,7 @@ async def credit_wallet(wallet_id: str, amount: int):
def get_random_string(N=10):
return "".join(
random.SystemRandom().choice(string.ascii_uppercase + string.digits)
for _ in range(10)
for _ in range(N)
)