Skip to content

Commit 74833ba

Browse files
committed
Add docstrings
1 parent 2d64732 commit 74833ba

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

mlflow_plugin_proxy_auth/proxy_auth_header_provider.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""Mlflow plugin proxy auth"""
2+
13
import base64
24
import os
35

@@ -8,6 +10,8 @@
810

911

1012
class ProxyAuthProvider(RequestAuthProvider):
13+
""""Mlflow plugin class"""
14+
1115
def __init__(self):
1216
self.username = os.getenv("MLFLOW_PROXY_USERNAME")
1317
self.password = os.getenv("MLFLOW_PROXY_PASSWORD")
@@ -20,6 +24,8 @@ def get_auth(self):
2024

2125

2226
class ProxyAuth(AuthBase):
27+
"""Requests proxy auth class"""
28+
2329
def __init__(self, username, password):
2430
self.username = username
2531
self.password = password

0 commit comments

Comments
 (0)