@@ -517,8 +517,7 @@ def erase(self, **kwargs):
517517 self .manager .gitlab .http_post (path )
518518
519519 def keep_artifacts (self , ** kwargs ):
520- """Prevent artifacts from being delete when expiration is set.
521- """
520+ """Prevent artifacts from being delete when expiration is set."""
522521 path = '%s/%s/artifacts/keep' % (self .manager .path , self .get_id ())
523522 self .manager .gitlab .http_post (path )
524523
@@ -1412,7 +1411,8 @@ def repository_raw_blob(self, sha, streamed=False, action=None,
14121411 str: The blob content
14131412 """
14141413 path = '/projects/%s/repository/blobs/%s/raw' % (self .get_id (), sha )
1415- result = self .manager .gitlab .http_get (path , streamed = streamed , ** kwargs )
1414+ result = self .manager .gitlab .http_get (path , streamed = streamed ,
1415+ ** kwargs )
14161416 return utils .response_content (result , streamed , action , chunk_size )
14171417
14181418 def repository_compare (self , from_ , to , ** kwargs ):
@@ -1473,8 +1473,7 @@ def create_fork_relation(self, forked_from_id, **kwargs):
14731473 self .manager .gitlab .http_post (path , ** kwargs )
14741474
14751475 def delete_fork_relation (self , ** kwargs ):
1476- """Delete a forked relation between existing projects.
1477- """
1476+ """Delete a forked relation between existing projects."""
14781477 path = '/projects/%s/fork' % self .get_id ()
14791478 self .manager .gitlab .http_delete (path , ** kwargs )
14801479
0 commit comments