Skip to content

Commit 6c7d222

Browse files
timgates42auvipymarianoeramirez
authored
Fix simple typo: containg -> containing (#762)
Co-authored-by: Asif Saif Uddin <[email protected]> Co-authored-by: Mariano ramirez <[email protected]>
1 parent b8f4d78 commit 6c7d222

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
def get_basic_auth_header(user, password):
55
"""
6-
Return a dict containg the correct headers to set to make HTTP Basic Auth request
6+
Return a dict containing the correct headers to set to make HTTP Basic
7+
Auth request
78
"""
89
user_pass = "{0}:{1}".format(user, password)
910
auth_string = base64.b64encode(user_pass.encode("utf-8"))

0 commit comments

Comments
 (0)