(self)
| 473 | return project |
| 474 | |
| 475 | def serialize_branch_list(self): |
| 476 | |
| 477 | branch_list = [] |
| 478 | for branch in self.branch_list: |
| 479 | branch_list.append(branch.serialize()) |
| 480 | |
| 481 | return branch_list |
| 482 | |
| 483 | # TODO why is this called serialize_public? |
| 484 | # Was supposed to be relation to "public" as privacy setting but isn't clear |
no test coverage detected