Skip to content

Commit 441244b

Browse files
author
Gauvain Pocentek
committed
pop8 fixes
1 parent cd98903 commit 441244b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gitlab/v4/objects.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ class User(GitlabObject):
134134
optionalUpdateAttrs = ['password', 'skype', 'linkedin', 'twitter',
135135
'projects_limit', 'extern_uid', 'provider', 'bio',
136136
'admin', 'can_create_group', 'website_url',
137-
'skip_confirmation', 'external', 'organization', 'location']
137+
'skip_confirmation', 'external', 'organization',
138+
'location']
138139
managers = (
139140
('emails', 'UserEmailManager', [('user_id', 'id')]),
140141
('keys', 'UserKeyManager', [('user_id', 'id')]),
@@ -1236,7 +1237,8 @@ def unsubscribe(self, **kwargs):
12361237
def cancel_merge_when_pipeline_succeeds(self, **kwargs):
12371238
"""Cancel merge when build succeeds."""
12381239

1239-
u = ('/projects/%s/merge_requests/%s/cancel_merge_when_pipeline_succeeds'
1240+
u = ('/projects/%s/merge_requests/%s/'
1241+
'cancel_merge_when_pipeline_succeeds'
12401242
% (self.project_id, self.id))
12411243
r = self.gitlab._raw_put(u, **kwargs)
12421244
errors = {401: GitlabMRForbiddenError,

0 commit comments

Comments
 (0)