Skip to content

Commit

Permalink
Fix P1 in comment spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Sep 10, 2024
1 parent 32d0fe5 commit e433585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metricity/exts/event_listeners/_syncer_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def sync_message(message: discord.Message, sess: AsyncSession, *, from_thr
if await sess.get(models.Message, str(message.id)):
return

hash_ctx = hashlib.md5() # noqa: S324
hash_ctx = hashlib.md5() # noqa: S324
hash_ctx.update(message.content.encode())
digest = hash_ctx.digest()
digest_encoded = binascii.hexlify(digest).decode()
Expand Down

0 comments on commit e433585

Please sign in to comment.