Skip to content

Commit eeab035

Browse files
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.
1 parent f117b2f commit eeab035

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

gitlab/client.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,7 @@ def _set_auth_info(self) -> None:
484484
if (self.http_username and not self.http_password) or (
485485
not self.http_username and self.http_password
486486
):
487-
raise ValueError(
488-
"Both http_username and http_password should " "be defined"
489-
)
487+
raise ValueError("Both http_username and http_password should be defined")
490488
if self.oauth_token and self.http_username:
491489
raise ValueError(
492490
"Only one of oauth authentication or http "

0 commit comments

Comments
 (0)