From 58a7098be5085d5a17859d7aee487fab4e8d927d Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 24 Jan 2023 11:04:19 +0000 Subject: [PATCH] fix unused variable --- tests/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers.py b/tests/helpers.py index 9bb10571..9d2aae72 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -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) )