Changes the projects title. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project`
(self, text)
| 738 | return self.post_comment(content, parent_id=parent_id, commentee_id=commentee_id) |
| 739 | |
| 740 | def set_title(self, text): |
| 741 | """ |
| 742 | Changes the projects title. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project` |
| 743 | """ |
| 744 | self.set_fields({"title": text}) |
| 745 | |
| 746 | def set_instructions(self, text): |
| 747 | """ |
nothing calls this directly
no test coverage detected