chore: remove unused join_conversation flag and trailing whitespace in bot.py event loop

This commit is contained in:
retoor 2025-02-13 09:21:35 +00:00
parent e88b154510
commit ffc347030f

View File

@ -63,7 +63,6 @@ class Bot:
logger.debug("Found channel: " + channel["name"])
self.user = (await (await rpc.get_user(None))())
logger.debug("Logged in as: " + self.user["username"])
self.join_conversation = False
while True:
try:
try:
@ -100,4 +99,4 @@ class Bot:
logger.debug("Event unhandled regarding message: " + data.message)
except Exception as ex:
logger.exception(ex)
break