File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 55 - repo : https://github.com/astral-sh/ruff-pre-commit
66 rev : v0.12.2
77 hooks :
8- - id : ruff
8+ - id : ruff-check
9+ - id : ruff-format
910 - repo : local
1011 hooks :
1112 - id : cargo-fmt
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def json_to_csv(args):
4444 for map_id , mapping in data ["Maps" ].items ():
4545 for ocid , identifiers in mapping .items ():
4646 # ocid_buyer* and ocid_procuringentity* are `str`.
47- for identifier in ( identifiers if isinstance (identifiers , list ) else [identifiers ]) :
47+ for identifier in identifiers if isinstance (identifiers , list ) else [identifiers ]:
4848 identifier_to_ocid [map_id ][identifier ].append (ocid )
4949
5050 rows = []
Original file line number Diff line number Diff line change 11"""Measure red flags and procurement indicators using OCDS data."""
2+
23from .ocdscardinal import coverage
34
45__all__ = ("coverage" ,)
You can’t perform that action at this time.
0 commit comments