Skip to content

Commit e433585

Browse files
committed
Fix P1 in comment spacing
1 parent 32d0fe5 commit e433585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metricity/exts/event_listeners/_syncer_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async def sync_message(message: discord.Message, sess: AsyncSession, *, from_thr
3333
if await sess.get(models.Message, str(message.id)):
3434
return
3535

36-
hash_ctx = hashlib.md5() # noqa: S324
36+
hash_ctx = hashlib.md5() # noqa: S324
3737
hash_ctx.update(message.content.encode())
3838
digest = hash_ctx.digest()
3939
digest_encoded = binascii.hexlify(digest).decode()

0 commit comments

Comments
 (0)