Skip to content

Commit 8f1d145

Browse files
committed
TDM-8085 fix errors
1 parent 0caf55b commit 8f1d145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uncoder-core/app/translator/core/render.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def generate_query(self, tokens: list[TOKEN_TYPE], source_mapping: SourceMapping
270270
not_found_mapping_fields.add(err.field_name)
271271
if not_found_mapping_fields:
272272
raise StrictPlatformException(
273-
self.details.name, "", source_mapping.source_id, list(not_found_mapping_fields)
273+
self.details.name, "", source_mapping.source_id, sorted(list(not_found_mapping_fields))
274274
)
275275
return "".join(result_values)
276276

0 commit comments

Comments
 (0)