diff options
| author | Christian Cleberg <[email protected]> | 2024-11-07 18:29:37 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2024-11-07 18:29:37 -0600 |
| commit | ace37138a976fe4915af71ae6992bb327c64d3cc (patch) | |
| tree | 8fe3746248fdf18911cdaf55c762ab80fe2aef15 | |
| parent | 2aeccc9022ca7984af27a0dd372e89e573158a62 (diff) | |
| download | yoshi-cli-ace37138a976fe4915af71ae6992bb327c64d3cc.tar.gz yoshi-cli-ace37138a976fe4915af71ae6992bb327c64d3cc.tar.bz2 yoshi-cli-ace37138a976fe4915af71ae6992bb327c64d3cc.zip | |
fix pylint errors for wordlist.py
| -rw-r--r-- | pylintrc | 2 | ||||
| -rw-r--r-- | yoshi/wordlist.py | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -1,2 +1,2 @@ [MESSAGES CONTROL] -disable=too-many-branches +disable=too-many-branches,too-many-lines diff --git a/yoshi/wordlist.py b/yoshi/wordlist.py index af03a6f..3ea052e 100644 --- a/yoshi/wordlist.py +++ b/yoshi/wordlist.py @@ -1,3 +1,7 @@ +""" +A list of words to be used in XKCD-style passphrases. +""" + WORDLIST = [ "abacus", "abdomen", |
