(arg: KeyValueArg)
| 195 | |
| 196 | |
| 197 | def process_data_embed_raw_json_file_arg(arg: KeyValueArg) -> JSONType: |
| 198 | contents = load_text_file(arg) |
| 199 | value = load_json(arg, contents) |
| 200 | return value |
| 201 | |
| 202 | |
| 203 | def process_data_raw_json_embed_arg(arg: KeyValueArg) -> JSONType: |
nothing calls this directly
no test coverage detected