Changes the projects notes and credits. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project`
(self, text)
| 750 | self.set_fields({"instructions": text}) |
| 751 | |
| 752 | def set_notes(self, text): |
| 753 | """ |
| 754 | Changes the projects notes and credits. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project` |
| 755 | """ |
| 756 | self.set_fields({"description": text}) |
| 757 | |
| 758 | @deprecated("Deprecated because ScratchDB is down indefinitely.") |
| 759 | def ranks(self): |
nothing calls this directly
no test coverage detected