Skip to content

Commit f721b5f

Browse files
committed
fix: Fixed GuildFeatures missing default value
1 parent c3fdf88 commit f721b5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/guild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class GuildFeatures(Iterable[str], dict):
167167
168168
Returns an iterator over the enabled features.
169169
"""
170-
def __init__(self, /, initial: List[str], **features: bool):
170+
def __init__(self, /, initial: List[str] = [], **features: bool):
171171
"""
172172
Parameters
173173
-----------

0 commit comments

Comments
 (0)