Skip to content

Commit

Permalink
Don't limit json to ascii-only
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Dec 16, 2023
1 parent fe98dd9 commit d4a8c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra/backends/fontra.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def deserializeGlyph(jsonSource: str, glyphName: str | None = None) -> VariableG


def serialize(data: list | dict) -> str:
return json.dumps(data, indent=0)
return json.dumps(data, indent=0, ensure_ascii=False)


@dataclass(kw_only=True)
Expand Down

0 comments on commit d4a8c11

Please sign in to comment.