bonajoy

Results 1 comments of bonajoy

This code works in Streamlit 1.40.0. ```python def patch_modules_streamlit_elements(file: str, old_line: str, new_line: str): import streamlit_elements import os relative_file_path = "core/callback.py" library_root = list(streamlit_elements.__path__)[0] file_path = os.path.join(library_root, relative_file_path) with open(file_path,...