Maybe I'm stupid, but I don't understand how to call an async JS function from Python. For example: ```html eel.expose(test); async function test() { console.log("Hello world!"); } ``` This does not work: ```python eel.test() ```
Maybe I'm stupid, but I don't understand how to call an async JS function from Python. For example:
eel.expose(test); async function test() { console.log("Hello world!"); }This does not work: