Skip to content

Commit

Permalink
- Positional-only arguments are the most useless concept in Python
Browse files Browse the repository at this point in the history
- Closes #39
  • Loading branch information
nwithan8 committed Sep 16, 2022
1 parent b94757b commit 303ae00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/discord_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ async def get_old_message_in_tautulli_channel(self):
if last_bot_message_id == "":
info("Couldn't find old message, sending initial message...")
await send_starter_message(tautulli_connector=self.tautulli, discord_channel=self.tautulli_channel)
return await self.tautulli_channel.fetch_message(id=last_bot_message_id)
return await self.tautulli_channel.fetch_message(last_bot_message_id)

async def update_voice_channels(self, activity):
if activity:
Expand Down

0 comments on commit 303ae00

Please sign in to comment.