Skip to content

Commit 05a132c

Browse files
committed
Fix invalid escape sequence in DEFAULT_GRAYSCALE_70_CHARACTERS
1 parent 89cf0ba commit 05a132c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openeo/testing/results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
_DEFAULT_ATOL = 1e-6
2323

2424
# https://paulbourke.net/dataformats/asciiart
25-
DEFAULT_GRAYSCALE_70_CHARACTERS = "$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`'. "[::-1]
25+
DEFAULT_GRAYSCALE_70_CHARACTERS = r"$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`'. "[::-1]
2626
DEFAULT_GRAYSCALE_10_CHARACTERS = " .:-=+*#%@"
2727

2828
def _load_xarray_netcdf(path: Union[str, Path], **kwargs) -> xarray.Dataset:

0 commit comments

Comments
 (0)