Skip to content

Commit

Permalink
fix typo (again, tests would have caught that)
Browse files Browse the repository at this point in the history
  • Loading branch information
TicClick committed Mar 17, 2021
1 parent ceacdaf commit 7b86eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librarian/storage/models/discord.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def save_messages(self, *messages: typing.List[DiscordMessage], s):

@utils.optional_session
def delete_message(self, message_id, channel_id, s):
s.query(DiscordMessage).fiilter(
s.query(DiscordMessage).filter(
DiscordMessage.id == message_id,
DiscordMessage.channel_id == channel_id,
).delete()
Expand Down

0 comments on commit 7b86eb6

Please sign in to comment.