Skip to content

Commit b0b14c5

Browse files
authored
Merge pull request #48 from sadiqj/patch-1
Fix SyntaxWarning: invalid escape sequence '\/'
2 parents deae73f + c544792 commit b0b14c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opto/trace/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def escape_json_nested_quotes(json_str):
219219
# we didn't add \u to this list
220220
if json_str[i - 1] == "\\" and char not in [
221221
"\\",
222-
"\/",
222+
"\\/",
223223
"n",
224224
"b",
225225
"f",

0 commit comments

Comments
 (0)