Skip to content

Commit 09bec19

Browse files
author
Cristiano Casella
committed
linted
1 parent f6bb4f4 commit 09bec19

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gitlab/v4/objects/iterations.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class GroupIterationManager(ListMixin, RESTManager):
1616
_path = "/groups/{group_id}/iterations"
1717
_obj_cls = GroupIteration
1818
_from_parent_attrs = {"group_id": "id"}
19-
# When using the API, the "in" keyword collides with python's "in" keyword raising a SyntaxError.
19+
# When using the API, the "in" keyword collides with python's "in" keyword
20+
# raising a SyntaxError.
2021
# For this reason, we have to use the query_parameters argument:
2122
# group.iterations.list(query_parameters={"in": "title"})
2223
_list_filters = (
@@ -34,7 +35,8 @@ class ProjectIterationManager(ListMixin, RESTManager):
3435
_path = "/projects/{project_id}/iterations"
3536
_obj_cls = GroupIteration
3637
_from_parent_attrs = {"project_id": "id"}
37-
# When using the API, the "in" keyword collides with python's "in" keyword raising a SyntaxError.
38+
# When using the API, the "in" keyword collides with python's "in" keyword
39+
# raising a SyntaxError.
3840
# For this reason, we have to use the query_parameters argument:
3941
# group.iterations.list(query_parameters={"in": "title"})
4042
_list_filters = (

0 commit comments

Comments
 (0)