Streamlit terminates when using st.feedback

I made some progress here:

Create a repro.py and run with the following contents:

from streamlit.proto.ButtonGroup_pb2 import ButtonGroup as ButtonGroupProto

print("Start")
test = ButtonGroupProto().__repr__() # Crashes
print("Test: ", test, "end")

I copied this import line by following the st.feedback code, I didn’t check where it is used, but this consistently crashes like the other issue.

2 Likes