File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ class GroupIterationManager(ListMixin, RESTManager):
16
16
_path = "/groups/{group_id}/iterations"
17
17
_obj_cls = GroupIteration
18
18
_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.
20
21
# For this reason, we have to use the query_parameters argument:
21
22
# group.iterations.list(query_parameters={"in": "title"})
22
23
_list_filters = (
@@ -34,7 +35,8 @@ class ProjectIterationManager(ListMixin, RESTManager):
34
35
_path = "/projects/{project_id}/iterations"
35
36
_obj_cls = GroupIteration
36
37
_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.
38
40
# For this reason, we have to use the query_parameters argument:
39
41
# group.iterations.list(query_parameters={"in": "title"})
40
42
_list_filters = (
You can’t perform that action at this time.
0 commit comments