Fix flake8 error

This commit is contained in:
Luiz Otávio
2022-12-26 06:16:22 -03:00
parent 12c7cdfe43
commit 952e86724e

View File

@@ -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()