Closed ratnania closed 5 years ago
When running the tests we get lots of deprecation warnings, most of which are due to the presence of invalid escape sequences in Python strings. This can be avoided by using raw strings, which are obtained by prepending the character r
to the strings.
When running the tests we get lots of deprecation warnings, most of which are due to the presence of invalid escape sequences in Python strings. This can be avoided by using raw strings, which are obtained by prepending the character
r
to the strings.
There were 5 or 6 strings where the r character was missing. Fixed now.
other improvements will be done in the future