Disables commenting on the project. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project`
(self)
| 594 | return self._update_from_dict(r) |
| 595 | |
| 596 | def turn_off_commenting(self): |
| 597 | """ |
| 598 | Disables commenting on the project. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project` |
| 599 | """ |
| 600 | data = {"comments_allowed": False} |
| 601 | self.set_fields(data) |
| 602 | |
| 603 | def turn_on_commenting(self): |
| 604 | """ |
nothing calls this directly
no test coverage detected