(uri, *args, **kwargs)
| 533 | |
| 534 | |
| 535 | def webui_post(uri, *args, **kwargs): |
| 536 | url = f"http://{WEBUI_HOST}:{WEBUI_PORT}{WEBUI_API_PREFIX}{uri}" |
| 537 | return requests.post(url, *args, **kwargs) |
| 538 | |
| 539 | |
| 540 | def print_request(operation_to_apply, args): |
no test coverage detected