fix unused variable

This commit is contained in:
Pavol Rusnak
2023-01-30 11:46:45 +00:00
parent 430698c763
commit 58a7098be5
+1 -1
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)
)