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 51370d7 commit ad8af99Copy full SHA for ad8af99
1 file changed
policyengine_uk_data/datasets/enhanced_cps.py
@@ -419,7 +419,9 @@ def export_enhanced_cps_source(
419
)
420
421
rows: list[dict] = []
422
- household_ids = sorted(int(household_id) for household_id in eligible["household_id"])
+ household_ids = sorted(
423
+ int(household_id) for household_id in eligible["household_id"]
424
+ )
425
for index, household_id in enumerate(household_ids):
426
household = prepared[prepared["household_id"] == household_id].copy()
427
household = household.sort_values(
0 commit comments