Skip to content

Commit c1b3063

Browse files
authored
Merge pull request #2 from brentru/fix-md5-import
Fix md5 class import
2 parents 5b0d124 + 1268614 commit c1b3063

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_hashlib/_md5.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
MD5 Hash Algorithm.
2727
* Author(s): Brent Rubell
2828
"""
29-
# pylint: disable=too-few-public-methods
30-
class MD5():
29+
# pylint: disable=too-few-public-methods, invalid-name
30+
class md5():
3131
"""RSA MD5 Algorithm class."""
3232
def __init__(self, s=None):
3333
raise NotImplementedError("MD5 digests not currently implemented in this module.")

0 commit comments

Comments
 (0)