We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent96bf2b1 commitdd210beCopy full SHA for dd210be
gitlab.py
@@ -66,7 +66,7 @@ def __init__(self, url, private_token=None, email=None, password=None):
66
self.password=password
67
68
defauth(self):
69
-"""Perform an authentication using either the private token, or the
+"""Performs an authentication using either the private token, or the
70
email/password pair.
71
72
The user attribute will hold a CurrentUser object on success.
@@ -103,11 +103,11 @@ def setUrl(self, url):
103
self._url='%s/api/v3'%url
104
105
defsetToken(self,token):
106
-"""Set the private token for authentication"""
+"""Sets the private token for authentication"""
107
self.private_token=token
108
109
defsetCredentials(self,email,password):
110
-"""Set the email/login and password for authentication"""
+"""Sets the email/login and password for authentication"""
111
self.email=email
112
113