Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8134f84

Browse filesBrowse files
committed
fix pep8
1 parent 72ade19 commit 8134f84
Copy full SHA for 8134f84

File tree

Expand file treeCollapse file tree

1 file changed

+3
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-2
lines changed
Open diff view settings
Collapse file

‎gitlab/v4/objects.py‎

Copy file name to clipboardExpand all lines: gitlab/v4/objects.py
+3-2Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2624,8 +2624,9 @@ def trigger_pipeline(self, ref, token, variables={}, **kwargs):
26242624
"""
26252625
path = '/projects/%s/trigger/pipeline' % self.get_id()
26262626
post_data = {'ref': ref, 'token': token, 'variables': variables}
2627-
attrs = self.manager.gitlab.http_post(path, post_data=post_data, **kwargs)
2628-
return ProjectPipeline(project.pipelines, attrs)
2627+
attrs = self.manager.gitlab.http_post(
2628+
path, post_data=post_data, **kwargs)
2629+
return ProjectPipeline(self.pipelines, attrs)
26292630

26302631
@cli.register_custom_action('Project')
26312632
@exc.on_http_error(exc.GitlabHousekeepingError)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.