From 52c757ac36ae46e4478254f1bfaacae11f56e74c Mon Sep 17 00:00:00 2001 From: foamyguy Date: Thu, 28 Aug 2025 15:28:43 -0500 Subject: [PATCH] remove lamda pylint exception --- Fruit_Jam/Fruit_Jam_Spell_Jam/hmac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fruit_Jam/Fruit_Jam_Spell_Jam/hmac.py b/Fruit_Jam/Fruit_Jam_Spell_Jam/hmac.py index ecb5e4e95..d1516d9a4 100644 --- a/Fruit_Jam/Fruit_Jam_Spell_Jam/hmac.py +++ b/Fruit_Jam/Fruit_Jam_Spell_Jam/hmac.py @@ -7,7 +7,7 @@ class HMAC: - # pylint: disable=protected-access, import-outside-toplevel,unnecessary-lambda-assignment + # pylint: disable=protected-access, import-outside-toplevel def __init__(self, key, msg=None, digestmod=None): if not isinstance(key, (bytes, bytearray)): raise TypeError("key: expected bytes/bytearray")