1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

remove unneeded raw strings

This commit is contained in:
Kelly Brazil
2022-08-20 11:13:32 -07:00
parent 6d5c72b54b
commit 7fbfec4e5a
2 changed files with 4 additions and 4 deletions

View File

@ -121,8 +121,8 @@ __version__ = info.version
# https://www.rfc-editor.org/rfc/rfc5424.html#section-6
escape_map = {
r'\\': '\\',
r'\"': r'"',
r'\]': r']'
r'\"': '"',
r'\]': ']'
}

View File

@ -99,8 +99,8 @@ __version__ = info.version
# https://www.rfc-editor.org/rfc/rfc5424.html#section-6
escape_map = {
r'\\': '\\',
r'\"': r'"',
r'\]': r']'
r'\"': '"',
r'\]': ']'
}