Skip to content

Commit

Permalink
shush pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
greeeen-dev committed Nov 23, 2024
1 parent 0419a18 commit a6acb12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge_revolt.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def dispatch(self, event: str, *args: Any) -> None:
asyncio.create_task(listener(*args))

if func := getattr(self, f"on_{event}", None):
asyncio.create_task(func(*args))
asyncio.create_task(func(*args)) # pylint: disable=E1102

def add_bot(self,bot):
"""Adds a Discord bot to the Revolt client."""
Expand Down

0 comments on commit a6acb12

Please sign in to comment.