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
Are you using python 3.12? The change in string parsing can yield warnings or errors with strings that contain backslashes. Those can normally be fixed simply by telling python it is a "raw" string, eg, just prepending the quotes with an r:
#| exportdeff():
r""" Example doctring $x \mapsto y$ """returnNone
nbdev_readme
fails if I have a backslash in the docstring of any exported function, e.g.The resulting error message is very long and does not indicate the problem (although it does point to the offending function).
The text was updated successfully, but these errors were encountered: