1
0
This commit is contained in:
Erik Johnston
2025-01-22 14:18:07 +00:00
parent 38246d23f6
commit e4887f823a

View File

@@ -157,7 +157,7 @@ class StateEpochDataStore:
retcols=("state_group",),
desc="are_state_groups_pending_deletion",
)
return {row["state_group"] for row in rows}
return {row[0] for row in rows}
async def mark_state_group_as_used(self, state_group: int) -> None:
"""Mark that a given state group is used"""