(client, url: str, payload: dict)
| 72 | |
| 73 | |
| 74 | def _post_json(client, url: str, payload: dict): |
| 75 | return client.post( |
| 76 | url, |
| 77 | data=json.dumps(payload), |
| 78 | content_type="application/json", |
| 79 | ) |
| 80 | |
| 81 | |
| 82 | # --------------------------------------------------------------------------- |
no test coverage detected