Skip to content

Commit 9f7f45f

Browse files
author
Gauvain Pocentek
committed
fix line too long
1 parent c17ecc0 commit 9f7f45f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gitlab/objects.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,8 @@ def enable(self):
12571257

12581258
def disable(self):
12591259
"""Disable a deploy key for a project."""
1260-
url = '/projects/%s/deploy_keys/%s/disable' % (self.project_id, self.id)
1260+
url = '/projects/%s/deploy_keys/%s/disable' % (self.project_id,
1261+
self.id)
12611262
r = self.gitlab._raw_delete(url)
12621263
raise_error_from_response(r, GitlabProjectDeployKeyError, 200)
12631264

0 commit comments

Comments
 (0)