m-wrzr / streamlit-searchbox

Streamlit searchbox that dynamically updates and provides a list of suggestions based on a provided function
MIT License
240 stars 31 forks source link

Syntax error when calling the package #10

Closed harithzulfaizal closed 1 year ago

harithzulfaizal commented 1 year ago

I seem to encounter this error when calling the package, SyntaxError: File "C:\Users\gpharith\Documents\gpt3-policydoc\openai_venv\lib\site-packages\streamlit_searchbox__init__.py", line 108 match interaction: ^ SyntaxError: invalid syntax

alikimav commented 1 year ago

I think it's because the match case statement is introduced in python 3.10?

m-wrzr commented 1 year ago

Thanks for reporting the error.

@alikimav you're right, I've removed the match to support older python versions, thank you for the input!