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.
1 parent d340f51 commit 53a4d5bCopy full SHA for 53a4d5b
pipelines/assets/fixtures.py
@@ -338,8 +338,10 @@ def consolidated_fixture(
338
for model_name, instances in livelihood_activity_valid_instances.items()
339
if model_name != "WealthGroup"
340
},
341
- **wild_foods_valid_instances,
342
}
+ # Add the keys: `Fishing` and `WildFoodGathering`
343
+ consolidated_instances["Fishing"] = []
344
+ consolidated_instances["WildFoodGathering"] = []
345
346
# Add the wild foods and other cash income instances, if they are present
347
for model_name, instances in {**other_cash_income_valid_instances, **wild_foods_valid_instances}.items():
0 commit comments