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):
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 = (
You can’t perform that action at this time.
0 commit comments