Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorkomeil Parseh <ahmdparsh129@gmail.com>2022-02-28 18:03:09 +0330
committerGitHub <noreply@github.com>2022-02-28 15:33:09 +0100
commit7e19bf6e2ec2101b590405e6860007309661872b (patch)
tree6864d01593454efa14ec03aa01bf6f6ac06f9d58 /.flake8
parentf06aabb4d4a50d3a8ab7c07bef8390f72b091293 (diff)
Add password strength check (#983)
* Add password strength check * Delete time.sleep and log, use the select class instead * Ignore W503 in flake8 * Solve some problems of the password strength check algorithm Part of the code was written by @phisch. This code tries to measure the strength of the user's password and suggests that the password is weak. * rename function * Restore the flake8 configuration file to its previous state
Diffstat (limited to '.flake8')
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index c3377d24..d9fb938e 100644
--- a/.flake8
+++ b/.flake8
@@ -7,4 +7,4 @@ max-line-length = 236
show-source = True
statistics = True
per-file-ignores = __init__.py:F401,F403,F405 simple_menu.py:C901,W503 guided.py:C901
-builtins = _
+builtins = _ \ No newline at end of file