diff options
author | 2025-08-04 09:48:55 +0800 | |
---|---|---|
committer | 2025-08-04 09:48:55 +0800 | |
commit | 58fb7d6bd5982f63a732270f6e9a86e7d63a7bb3 (patch) | |
tree | 8826361dd4f3e63b2694426c7dbc0a118a6e8c5b | |
parent | Bump lxml from 5.3.0 to 6.0.0 (diff) | |
parent | Madlibs - change zip parameter "strict" to False because the bot would not di... (diff) |
Merge pull request #1688 from DMFriends/madlibs
Madlibs - change zip parameter "strict" to False
-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" |