Skip to content
Snippets Groups Projects
Commit 8479aa27 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Let iterator of AssignmentCollection iterate over all_assignments (not only main_assignments)

parent 71b8767b
Branches
Tags
No related merge requests found
......@@ -347,7 +347,7 @@ class AssignmentCollection:
return result
def __iter__(self):
return self.main_assignments.__iter__()
return self.all_assignments.__iter__()
@property
def main_assignments_dict(self):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment