remove lamda pylint exception

This commit is contained in:
foamyguy 2025-08-28 15:28:43 -05:00
parent f5fec0e46b
commit 52c757ac36

View file

@ -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")