diff options
author | 2025-08-01 22:54:41 -0400 | |
---|---|---|
committer | 2025-08-01 22:54:41 -0400 | |
commit | 212b9dcdf4d38bac75a96ec79b4d65fde5cd7ea4 (patch) | |
tree | 8826361dd4f3e63b2694426c7dbc0a118a6e8c5b | |
parent | Bump lxml from 5.3.0 to 6.0.0 (diff) |
Madlibs - change zip parameter "strict" to False because the bot would not display the final Madlib due to an error on this line
-rw-r--r-- | bot/exts/fun/madlibs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/madlibs.py b/bot/exts/fun/madlibs.py index f457a191..478a80a2 100644 --- a/bot/exts/fun/madlibs.py +++ b/bot/exts/fun/madlibs.py @@ -116,7 +116,7 @@ class Madlibs(commands.Cog): self.checks.remove(author_check) story = [] - for value, blank in zip(random_template["value"], blanks, strict=True): + for value, blank in zip(random_template["value"], blanks, strict=False): story.append(f"{value}__{blank}__") # In each story template, there is always one more "value" |