(filename: str)
| 1960 | |
| 1961 | @staticmethod |
| 1962 | def read_json(filename: str) -> dict[str, Any]: |
| 1963 | with open(filename) as r: |
| 1964 | return json.load(r) |
| 1965 | |
| 1966 | @staticmethod |
| 1967 | def get_schema(spec: dict[str, Any], path: str) -> (list[str], dict[str, Any]): |