Some PEP-8 styling improvements

feature/embed-uploads
Tristan Gosselin-Hane 7 years ago
parent f34a4cc0f9
commit cae3404ca9
  1. 11
      webhook-bridge.py

@ -193,7 +193,7 @@ def main():
config.mc_server, config.mc_port, auth_token=auth_token, config.mc_server, config.mc_port, auth_token=auth_token,
handle_exception=minecraft_handle_exception) handle_exception=minecraft_handle_exception)
#Initialize the discord part # Initialize the discord part
discord_bot = discord.Client() discord_bot = discord.Client()
def register_handlers(connection): def register_handlers(connection):
@ -276,7 +276,6 @@ def main():
async def on_ready(): async def on_ready():
logging.info("Discord bot logged in as {} ({})".format(discord_bot.user.name, discord_bot.user.id)) logging.info("Discord bot logged in as {} ({})".format(discord_bot.user.name, discord_bot.user.id))
@discord_bot.event @discord_bot.event
async def on_message(message): async def on_message(message):
# We do not want the bot to reply to itself # We do not want the bot to reply to itself
@ -382,7 +381,7 @@ def main():
return return
elif message.content.startswith("mc!"): elif message.content.startswith("mc!"):
# Chatch-all # Catch-all
send_channel = message.channel send_channel = message.channel
if isinstance(message.channel, discord.abc.GuildChannel): if isinstance(message.channel, discord.abc.GuildChannel):
await message.delete() await message.delete()
@ -436,11 +435,9 @@ def main():
send_channel = message.author.dm_channel send_channel = message.author.dm_channel
msg = "Unable to send chat message: there is no Minecraft account linked to this discord account, please run `mc!register`." msg = "Unable to send chat message: there is no Minecraft account linked to this discord account, please run `mc!register`."
await send_channel.send(msg) await send_channel.send(msg)
discord_bot.run(config.discord_token) discord_bot.run(config.discord_token)
if __name__ == "__main__": if __name__ == "__main__":
main() main()
Loading…
Cancel
Save