eigengdb icon indicating copy to clipboard operation
eigengdb copied to clipboard

Syntax warnings

Open sampotter opened this issue 2 years ago • 0 comments

In more recent versions of Python, these two strings should be raw strings, otherwise Python will emit a Syntax Warning every time gdb is started:

https://github.com/dmillard/eigengdb/blob/c741edef3f07f33429056eff48d79a62733ed494/eigengdb/init.py#L89

https://github.com/dmillard/eigengdb/blob/c741edef3f07f33429056eff48d79a62733ed494/eigengdb/init.py#L184

Easy fix: just convert '...' to r'...'.

sampotter avatar Oct 05 '23 20:10 sampotter