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:
@ -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'\]': ']'
|
||||
}
|
||||
|
||||
|
||||
|
@ -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'\]': ']'
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user