Skip to content

Commit

Permalink
Do not escape by default. Closes #11.
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPeloton committed Dec 6, 2024
1 parent 26503d8 commit efc39bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/utils/decoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def hbase_to_dict(hbase_output, escape_slash=False):
# and then parse it back to Dict in Python
if escape_slash:
hbase_output = str(hbase_output)
optimized = json.loads(JSONObject(str(hbase_output)).toString())
optimized = json.loads(JSONObject(hbase_output).toString())

return optimized

Expand Down

0 comments on commit efc39bb

Please sign in to comment.