Skip to content

Commit a31e740

Browse files
committed
Modified docs
1 parent cd6a210 commit a31e740

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pybt/token.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
from hashlib import md5
22

33
def get_md5(s):
4-
"""Get md5 string"""
4+
"""Get md5 string
5+
6+
Args:
7+
s (str): The string.
8+
"""
59
m = md5()
610
m.update(s.encode("utf-8"))
711
return m.hexdigest()

0 commit comments

Comments
 (0)