From eeab035ab715e088af73ada00e0a3b0c03527187 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sun, 19 Jun 2022 19:19:43 -0700 Subject: chore: fix issue found with pylint==2.14.3 A new error was reported when running pylint==2.14.3: gitlab/client.py:488:0: W1404: Implicit string concatenation found in call (implicit-str-concat) Fixed this issue. --- gitlab/client.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'gitlab') 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 " -- cgit v1.2.1