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
The culprit appears to be two occurrences of $' within the docstring, based on my reading of this issue: JuliaLang/julia#10816.
We should modify the component generator to prepend a \ to escape $ whenever they occur, which should resolve the error at component build time in the future.
A similar change was made for the R component generator, to address unescaped backslashes:
Following my attempt to build DashTable.jl, the following error appeared:
The culprit appears to be two occurrences of
$'
within the docstring, based on my reading of this issue: JuliaLang/julia#10816.We should modify the component generator to prepend a
\
to escape$
whenever they occur, which should resolve the error at component build time in the future.A similar change was made for the R component generator, to address unescaped backslashes:
dash/dash/development/_r_components_generation.py
Lines 411 to 413 in 316b662
The text was updated successfully, but these errors were encountered: