decorators.py 225 B

123456
  1. def author_is_not_bot(func):
  2. async def wrapper(self, message, *args, **kwargs):
  3. if message.author == self.user:
  4. return None
  5. return await func(self, message, *args, **kwargs)
  6. return wrapper