7 lines
110 B
Python
7 lines
110 B
Python
|
|
def render_json(json):
|
|
if not json.get("full_text", ""):
|
|
return ""
|
|
|
|
return json["full_text"]
|