Skip to content

Commit 58fb7d6

Browse files
authored
Merge pull request #1688 from DMFriends/madlibs
Madlibs - change zip parameter "strict" to False
2 parents 0a10569 + 212b9dc commit 58fb7d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot/exts/fun/madlibs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def author_check(message: discord.Message) -> bool:
116116
self.checks.remove(author_check)
117117

118118
story = []
119-
for value, blank in zip(random_template["value"], blanks, strict=True):
119+
for value, blank in zip(random_template["value"], blanks, strict=False):
120120
story.append(f"{value}__{blank}__")
121121

122122
# In each story template, there is always one more "value"

0 commit comments

Comments
 (0)