Skip to content

Commit 47a2556

Browse files
authored
passed the black check (#2)
1 parent ef2eefe commit 47a2556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redash/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def json_dumps(data, *args, **kwargs):
148148
try:
149149
# Preprocess data before sending to orjson.dumps
150150
preprocessed_data = _preprocess_json_data(data, JSONEncoder())
151-
return orjson.dumps(preprocessed_data, option=options).decode('utf-8')
151+
return orjson.dumps(preprocessed_data, option=options).decode("utf-8")
152152
except orjson.JSONEncodeError as e:
153153
raise TypeError(f"Object not serializable: {e}")
154154

0 commit comments

Comments
 (0)