refactor: simplify and deduplicate across crud, metrics, cli, and

exceptions
This commit is contained in:
2026-03-01 09:45:49 -05:00
parent 858cca576e
commit f45e4f5f93
4 changed files with 33 additions and 15 deletions

View File

@@ -72,7 +72,7 @@ async def load(
registry = get_fixtures_registry()
db_context = get_db_context()
context_list = [c.value for c in contexts] if contexts else [Context.BASE]
context_list = list(contexts) if contexts else [Context.BASE]
ordered = registry.resolve_context_dependencies(*context_list)