We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2836ec3 + b6474bb commit cb7db2eCopy full SHA for cb7db2e
pipelines/assets/fixtures.py
@@ -339,9 +339,12 @@ def consolidated_fixture(
339
if model_name != "WealthGroup"
340
},
341
}
342
+
343
# Add the wild foods and other cash income instances, if they are present
344
for model_name, instances in {**other_cash_income_valid_instances, **wild_foods_valid_instances}.items():
345
if instances and model_name != "WealthGroup":
346
+ if model_name not in consolidated_instances:
347
+ consolidated_instances[model_name] = []
348
consolidated_instances[model_name] += instances
349
350
fixture, metadata = get_fixture_from_instances(consolidated_instances)
0 commit comments