Skip to content
Snippets Groups Projects
Verified Commit b49696bf authored by Daniel Hornung's avatar Daniel Hornung
Browse files

FIX: importance order fixed.

parent 6c87e4bf
No related branches found
No related tags found
2 merge requests!89ENH: JsonSchemaExporter accepts do_not_create parameter.,!83ENH: JsonSchemaExporter can merge schemata and arrayize them
Pipeline #43223 passed
...@@ -285,8 +285,8 @@ class DataModel(dict): ...@@ -285,8 +285,8 @@ class DataModel(dict):
importances = { importances = {
models.OBLIGATORY: 0, models.OBLIGATORY: 0,
models.SUGGESTED: 1, models.RECOMMENDED: 1,
models.RECOMMENDED: 2, models.SUGGESTED: 2,
} }
for parent in list(entity.get_parents()): # Make a change-resistant list copy. for parent in list(entity.get_parents()): # Make a change-resistant list copy.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment