From 866628830202236da3f0ca8c3023732b72b532fc Mon Sep 17 00:00:00 2001 From: Joseph Date: Sat, 24 Mar 2018 02:52:25 +0000 Subject: [PATCH] [UPDATE] Ignored a silly rule from flake8. This rule basically said that we cannot use the random module as it is insecure for cryptography, which we are not even using it for. This commit ignores this so the random module can be used. --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 028645b4..9797a5cc 100644 --- a/tox.ini +++ b/tox.ini @@ -2,3 +2,4 @@ max-line-length=120 application_import_names=bot exclude=.venv +ignore=B311