fix issue with survey script
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aaron Riedel 2024-07-12 14:37:49 +02:00
parent a344db3ad1
commit 4c261a30d4
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -21,9 +21,9 @@ def mid(s, offset, amount):
return s[offset:offset+amount] return s[offset:offset+amount]
token = os.environ['TOKEN'] token = os.environ['TOKEN']
survey_channel = os.environ['SURVEY_CHANNEL'] survey_channel = int(os.environ['SURVEY_CHANNEL'])
mention_id = os.environ['MENTION_ID'] mention_id = int(os.environ['MENTION_ID'])
guild_id = os.environ['GUILD_ID'] guild_id = int(os.environ['GUILD_ID'])
runtime = 48 runtime = 48
bot = discord.Bot(description=None) bot = discord.Bot(description=None)