Skip to content

Commit 0e80145

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 ca98d88 commit 0e80145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def _set_auth_info(self) -> None:
485485
not self.http_username and self.http_password
486486
):
487487
raise ValueError(
488-
"Both http_username and http_password should " "be defined"
488+
"Both http_username and http_password should be defined"
489489
)
490490
if self.oauth_token and self.http_username:
491491
raise ValueError(

0 commit comments

Comments
 (0)