From 062f4912f5a5089d4e5e978ec1ca9829641793f0 Mon Sep 17 00:00:00 2001 From: Nilkanteshwar <86783507+Nilkanteshwar@users.noreply.github.com> Date: Thu, 1 Jul 2021 18:08:14 +0530 Subject: [PATCH] Update app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index dc2e162..b889928 100644 --- a/app.py +++ b/app.py @@ -9,7 +9,7 @@ def randomno(): lettersAndDigits = string.ascii_letters + string.digits - return ''.join((random.choice(lettersAndDigits) for i in range(6))) + return ''.join((random.choice(lettersAndDigits) for i in range(8))) @app.route('/', methods=['GET', 'POST'])