8000 Fix style · marcoblos/python-gitlab@ed00807 · GitHub
[go: up one dir, main page]

Skip to content

Commit ed00807

Browse files
committed
Fix style
1 parent 9448cd5 commit ed00807

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

gitlab/objects.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2071,7 +2071,11 @@ def slack_service(self, webhook, username=None, channel=None, **kwargs):
20712071
url = "/projects/%s/services/slack" % self.id
20722072
r = self.gitlab._raw_put(
20732073
url,
2074-
data={'webhook': webhook, 'username': username, 'channel': channel},
2074+
data={
2075+
'webhook': webhook,
2076+
'username': username,
2077+
'channel': channel
2078+
},
20752079
**kwargs
20762080
)
20772081
raise_error_from_response(r, GitlabServiceSlackError)

0 commit comments

Comments
 (0)
0