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
Hi, since I upgraded my Linux OS and python I got errors that assume escape sequences in strings that should be marked as raw string literals.
This lead to numerous follow up errors.
Please just add an r before the string.
Here are the snippets that bugged myself:
(I did not search for more occurences, but maybe there are some more.)
Hi, since I upgraded my Linux OS and python I got errors that assume escape sequences in strings that should be marked as raw string literals.
This lead to numerous follow up errors.
Please just add an r before the string.
Here are the snippets that bugged myself:
(I did not search for more occurences, but maybe there are some more.)
nodes/nodes_xygrid.py:256
"fonts\Roboto-Regular.ttf" -> r"fonts\Roboto-Regular.ttf"
nodes/nodes_list.py:383
nodes/nodes_list.py:393
"C:\Windows\Fonts" -> r"C:\Windows\Fonts"
Many thanks in advance and for the great work you already have done!
The text was updated successfully, but these errors were encountered: