dash-html-components icon indicating copy to clipboard operation
dash-html-components copied to clipboard

'async' prop of Script with python 3.7

Open rmarren1 opened this issue 7 years ago • 0 comments

In Python 3.7, setting the async prop of the Script component will not work normally since async 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.

rmarren1 avatar Aug 11 '18 00:08 rmarren1