8 lines
184 B
Python
8 lines
184 B
Python
import discord
|
|
from discord.ext import commands
|
|
from util import logging
|
|
|
|
def is_author_bot(ctx : commands.Context):
|
|
if ctx.message.author.bot:
|
|
return False
|
|
return True |