Skip to content

Commit de86c25

Browse files
committed
fix for PEP8: E501 line too long
1 parent dffef9d commit de86c25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gitlab/v4/objects.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3282,7 +3282,8 @@ class Project(SaveMixin, ObjectDeleteMixin, RESTObject):
32823282
('wikis', 'ProjectWikiManager'),
32833283
)
32843284

3285-
@cli.register_custom_action('Project', tuple(), ('path', 'ref', 'recursive'))
3285+
@cli.register_custom_action('Project', tuple(),
3286+
('path', 'ref', 'recursive'))
32863287
@exc.on_http_error(exc.GitlabGetError)
32873288
def repository_tree(self, path='', ref='', recursive=False, **kwargs):
32883289
"""Return a list of files in the repository.

0 commit comments

Comments
 (0)