summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/client.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/gitlab/client.py b/gitlab/client.py
index f5d12df..c68448e 100644
--- a/gitlab/client.py
+++ b/gitlab/client.py
@@ -484,9 +484,7 @@ class Gitlab:
if (self.http_username and not self.http_password) or (
not self.http_username and self.http_password
):
- raise ValueError(
- "Both http_username and http_password should " "be defined"
- )
+ raise ValueError("Both http_username and http_password should be defined")
if self.oauth_token and self.http_username:
raise ValueError(
"Only one of oauth authentication or http "