Update the recording object with new information.
(self, updated_info: dict)
| 141 | self.display_title = f"{prefix or ''}{self.title}" |
| 142 | |
| 143 | def update(self, updated_info: dict): |
| 144 | """Update the recording object with new information.""" |
| 145 | for attr, value in updated_info.items(): |
| 146 | if hasattr(self, attr): |
| 147 | setattr(self, attr, value) |
no outgoing calls
no test coverage detected