From 952e86724e182c12205a11118281cc32d6daeb7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Mon, 26 Dec 2022 06:16:22 -0300 Subject: [PATCH] Fix flake8 error --- aula182.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aula182.py b/aula182.py index 0bae588..776fa7f 100644 --- a/aula182.py +++ b/aula182.py @@ -4,8 +4,8 @@ import secrets # import string as s # from secrets import SystemRandom as Sr -# print(''.join(Sr().choices(s.ascii_letters + s.digits + s.punctuation, k=64))) -# python -c "import string as s;from secrets import SystemRandom as Sr; print(''.join(Sr().choices(s.ascii_letters + s.punctuation + s.digits,k=12)))" +# print(''.join(Sr().choices(s.ascii_letters + s.digits + s.punctuation, k=64))) # noqa: E501 +# python -c "import string as s;from secrets import SystemRandom as Sr; print(''.join(Sr().choices(s.ascii_letters + s.punctuation + s.digits,k=12)))" # noqa: E501 random = secrets.SystemRandom()