(content, prefix: str = "")
| 146 | |
| 147 | |
| 148 | def compute_mdhash_id(content, prefix: str = ""): |
| 149 | return prefix + md5(str(content).encode()).hexdigest() |
| 150 | |
| 151 | |
| 152 | def write_json(json_obj, file_name): |
nothing calls this directly
no outgoing calls
no test coverage detected