MCPcopy
hub / github.com/ihmily/StreamCap / update

Method update

app/models/recording/recording_model.py:143–147  ·  view source on GitHub ↗

Update the recording object with new information.

(self, updated_info: dict)

Source from the content-addressed store, hash-verified

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)

Callers 15

on_resizeFunction · 0.80
load_appFunction · 0.80
clear_content_areaMethod · 0.80
on_restoreMethod · 0.80
on_exitMethod · 0.80
create_tray_iconMethod · 0.80
handle_app_closeFunction · 0.80
minimize_to_trayFunction · 0.80
close_dialog_dismissedFunction · 0.80
close_dialogFunction · 0.80
show_update_dialogMethod · 0.80
close_dialogMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected