chore: show non-English characters in exported DSL files (#7042)

This commit is contained in:
Sangmin Ahn 2024-08-07 15:03:15 +09:00 committed by GitHub
parent 4c4f6e362f
commit 7f81a86e9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,7 +176,7 @@ class AppDslService:
else:
cls._append_model_config_export_data(export_data, app_model)
return yaml.dump(export_data)
return yaml.dump(export_data, allow_unicode=True)
@classmethod
def _check_or_fix_dsl(cls, import_data: dict) -> dict: