fix Unicode Escape Characters (#15318)

pull/15344/head
heyszt 11 months ago committed by GitHub
parent fcd9fd8513
commit a8b600845e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -136,7 +136,7 @@ class ArrayStringSegment(ArraySegment):
@property
def text(self) -> str:
return json.dumps(self.value)
return json.dumps(self.value, ensure_ascii=False)
class ArrayNumberSegment(ArraySegment):

Loading…
Cancel
Save