(path: Path)
| 176 | # Helpers |
| 177 | # --------------------------------------------------------------------------- |
| 178 | def load_json(path: Path) -> dict: |
| 179 | with open(path, "r", encoding="utf-8") as f: |
| 180 | return json.load(f) |
| 181 | |
| 182 | |
| 183 | def get_entries(data: dict) -> list: |
no outgoing calls
no test coverage detected