Changes the projects instructions. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project`
(self, text)
| 744 | self.set_fields({"title": text}) |
| 745 | |
| 746 | def set_instructions(self, text): |
| 747 | """ |
| 748 | Changes the projects instructions. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project` |
| 749 | """ |
| 750 | self.set_fields({"instructions": text}) |
| 751 | |
| 752 | def set_notes(self, text): |
| 753 | """ |
nothing calls this directly
no test coverage detected