Skip to content

Commit

Permalink
Add trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorukyum committed Apr 7, 2022
1 parent c50087a commit 6b6933e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion discord/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async def _purge_messages_helper(
around: Optional[SnowflakeTime] = None,
oldest_first: Optional[bool] = False,
bulk: bool = True,
reason: Optional[str] = None
reason: Optional[str] = None,
) -> List[Message]:
if check is MISSING:
check = lambda m: True
Expand Down
4 changes: 2 additions & 2 deletions discord/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ def is_me(m):
around=around,
oldest_first=oldest_first,
bulk=bulk,
reason=reason
reason=reason,
)

async def webhooks(self) -> List[Webhook]:
Expand Down Expand Up @@ -1115,7 +1115,7 @@ def is_me(m):
around=around,
oldest_first=oldest_first,
bulk=bulk,
reason=reason
reason=reason,
)

async def webhooks(self) -> List[Webhook]:
Expand Down

0 comments on commit 6b6933e

Please sign in to comment.