style(ingest): ruff format (I2)

This commit is contained in:
Kjell Tore Guttormsen 2026-07-03 18:40:40 +02:00
commit e66a2b4015
3 changed files with 32 additions and 7 deletions

View file

@ -255,8 +255,20 @@ def test_sql_source_has_no_connector_in_i2(tmp_path: Path) -> None:
# --- Step 4: index generation + stamped-replacement semantics ---
_TWO_EXTRACTIONS = [
{"id": "costs", "title": "Project costs", "query": "costs.csv", "okf_type": "dataset", "max_rows": 100},
{"id": "meta", "title": "Catalogue metadata", "query": "meta.csv", "okf_type": "reference", "max_rows": 10},
{
"id": "costs",
"title": "Project costs",
"query": "costs.csv",
"okf_type": "dataset",
"max_rows": 100,
},
{
"id": "meta",
"title": "Catalogue metadata",
"query": "meta.csv",
"okf_type": "reference",
"max_rows": 10,
},
]
_TWO_FILES = {
"costs.csv": b"item,cost\nled,120\n",