MCPcopy Create free account
hub / github.com/danielmiessler/Fabric / unstar_output

Function unstar_output

scripts/python_ui/streamlit.py:716–721  ·  view source on GitHub ↗

Remove an output from starred/favorites.

(log_index: int)

Source from the content-addressed store, hash-verified

714
715
716def unstar_output(log_index: int):
717 """Remove an output from starred/favorites."""
718 if 0 <= log_index < len(st.session_state.starred_outputs):
719 st.session_state.starred_outputs.pop(log_index)
720 # Save outputs after unstarring
721 save_outputs()
722
723
724def validate_input_content(input_text: str) -> Tuple[bool, str]:

Callers 1

mainFunction · 0.85

Calls 1

save_outputsFunction · 0.85

Tested by

no test coverage detected