You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2024. It is now read-only.
In Python 3.7, setting the
async
prop of theScript
component will not work normally sinceasync
is a reserved keyword in Python 3.7.To get the same functionality, set it as follows:
html.Script(id='hello', **{'async': 'blah'})
We should change
async
to something else in the future.The text was updated successfully, but these errors were encountered: