diff options
-rw-r--r-- | gitlab/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 14b642d..d4de709 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -61,10 +61,10 @@ class Gitlab(object): email (str): The user email or login. password (str): The user password (associated with email). ssl_verify (bool): Whether SSL certificates should be validated. - timeout (float or tuple(float,float)): Timeout to use for requests to - the GitLab server. - http_username: (str): Username for HTTP authentication - http_password: (str): Password for HTTP authentication + timeout (float): Timeout to use for requests to the GitLab server. + http_username (str): Username for HTTP authentication + http_password (str): Password for HTTP authentication + Attributes: user_emails (UserEmailManager): Manager for GitLab users' emails. user_keys (UserKeyManager): Manager for GitLab users' SSH keys. |