Update the title text.
(self, title: str)
| 130 | return self._expanded |
| 131 | |
| 132 | def set_title(self, title: str) -> None: |
| 133 | """Update the title text.""" |
| 134 | self._title = title |
| 135 | self._update_header_text() |
| 136 | |
| 137 | def get_content_frame(self) -> ctk.CTkFrame: |
| 138 | """Get the content frame to add widgets to.""" |
no test coverage detected