Marked 2 strings as raw strings to suppress warnings

This commit is contained in:
Ozzie Isaacs
2024-10-25 14:18:22 +02:00
parent 4fa7520598
commit d5059979d5
2 changed files with 2 additions and 2 deletions

View File

@@ -19,5 +19,5 @@ import re
def strip_whitespaces(text):
return re.sub("(^[\s\u200B-\u200D\ufeff]+)|([\s\u200B-\u200D\ufeff]+$)","", text)
return re.sub(r"(^[\s\u200B-\u200D\ufeff]+)|([\s\u200B-\u200D\ufeff]+$)","", text)