@@ -1570,7 +1570,7 @@ def content(self, streamed=False, action=None, chunk_size=1024, **kwargs):
1570
1570
result = self .manager .gitlab .http_get (
1571
1571
path , streamed = streamed , raw = True , ** kwargs
1572
1572
)
1573
- return utils .response_content (result , streamed , action ) # TODO:???
1573
+ return utils .response_content (result , streamed , action )
1574
1574
1575
1575
1576
1576
class SnippetManager (CRUDMixin , RESTManager ):
@@ -1918,7 +1918,7 @@ def artifacts(self, streamed=False, action=None, chunk_size=1024, **kwargs):
1918
1918
result = self .manager .gitlab .http_get (
1919
1919
path , streamed = streamed , raw = True , ** kwargs
1920
1920
)
1921
- return utils .response_content (result , streamed , action ) # TODO: ???
1921
+ return utils .response_content (result , streamed , action )
1922
1922
1923
1923
@cli .register_custom_action ("ProjectJob" )
1924
1924
@exc .on_http_error (exc .GitlabGetError )
@@ -1946,7 +1946,7 @@ def artifact(self, path, streamed=False, action=None, chunk_size=1024, **kwargs)
1946
1946
result = self .manager .gitlab .http_get (
1947
1947
path , streamed = streamed , raw = True , ** kwargs
1948
1948
)
1949
- return utils .response_content (result , streamed , action ) # TODO: ???
1949
+ return utils .response_content (result , streamed , action )
1950
1950
1951
1951
@cli .register_custom_action ("ProjectJob" )
1952
1952
@exc .on_http_error (exc .GitlabGetError )
@@ -1973,7 +1973,7 @@ def trace(self, streamed=False, action=None, chunk_size=1024, **kwargs):
1973
1973
result = self .manager .gitlab .http_get (
1974
1974
path , streamed = streamed , raw = True , ** kwargs
1975
1975
)
1976
- return utils .response_content (result , streamed , action ) # TODO: ???
1976
+ return utils .response_content (result , streamed , action )
1977
1977
1978
1978
1979
1979
class ProjectJobManager (RetrieveMixin , RESTManager ):
@@ -3458,7 +3458,7 @@ def raw(
3458
3458
result = self .gitlab .http_get (
3459
3459
path , query_data = query_data , streamed = streamed , raw = True , ** kwargs
3460
3460
)
3461
- return utils .response_content (result , streamed , action ) # TODO: ???
3461
+ return utils .response_content (result , streamed , action )
3462
3462
3463
3463
@cli .register_custom_action ("ProjectFileManager" , ("file_path" , "ref" ))
3464
3464
@exc .on_http_error (exc .GitlabListError )
@@ -3768,7 +3768,7 @@ def content(self, streamed=False, action=None, chunk_size=1024, **kwargs):
3768
3768
result = self .manager .gitlab .http_get (
3769
3769
path , streamed = streamed , raw = True , ** kwargs
3770
3770
)
3771
- return utils .response_content (result , streamed , action ) # TODO: ???
3771
+ return utils .response_content (result , streamed , action )
3772
3772
3773
3773
3774
3774
class ProjectSnippetManager (CRUDMixin , RESTManager ):
@@ -4088,7 +4088,7 @@ def download(self, streamed=False, action=None, chunk_size=1024, **kwargs):
4088
4088
result = self .manager .gitlab .http_get (
4089
4089
path , streamed = streamed , raw = True , ** kwargs
4090
4090
)
4091
- return utils .response_content (result , streamed , action ) # TODO: ???
4091
+ return utils .response_content (result , streamed , action )
4092
4092
4093
4093
4094
4094
class ProjectExportManager (GetWithoutIdMixin , CreateMixin , RESTManager ):
@@ -4279,7 +4279,7 @@ def repository_raw_blob(
4279
4279
result = self .manager .gitlab .http_get (
4280
4280
path , streamed = streamed , raw = True , ** kwargs
4281
4281
)
4282
- return utils .response_content (result , streamed , action ) # TODO: ???
4282
+ return utils .response_content (result , streamed , action )
4283
4283
4284
4284
@cli .register_custom_action ("Project" , ("from_" , "to" ))
4285
4285
@exc .on_http_error (exc .GitlabGetError )
@@ -4356,7 +4356,7 @@ def repository_archive(
4356
4356
result = self .manager .gitlab .http_get (
4357
4357
path , query_data = query_data , raw = True , streamed = streamed , ** kwargs
4358
4358
)
4359
- return utils .response_content (result , streamed , action ) # TODO: ???
4359
+ return utils .response_content (result , streamed , action )
4360
4360
4361
4361
@cli .register_custom_action ("Project" , ("forked_from_id" ,))
4362
4362
@exc .on_http_error (exc .GitlabCreateError )
@@ -4636,7 +4636,7 @@ def snapshot(
4636
4636
result = self .manager .gitlab .http_get (
4637
4637
path , streamed = streamed , raw = True , ** kwargs
4638
4638
)
4639
- return utils .response_content (result , streamed , action ) # TODO:???
4639
+ return utils .response_content (result , streamed , action )
4640
4640
4641
4641
@cli .register_custom_action ("Project" , ("scope" , "search" ))
4642
4642
@exc .on_http_error (exc .GitlabSearchError )
@@ -4729,7 +4729,7 @@ def artifact(
4729
4729
result = self .manager .gitlab .http_get (
4730
4730
path , streamed = streamed , raw = True , ** kwargs
4731
4731
)
4732
- return utils .response_content (result , streamed , action ) # TODO:???
4732
+ return utils .response_content (result , streamed , action )
4733
4733
4734
4734
4735
4735
class ProjectManager (CRUDMixin , RESTManager ):
0 commit comments