From a02e5a169effa9a654b6230e36e5a44017cc06b6 Mon Sep 17 00:00:00 2001 From: Manuel Lera-Ramirez Date: Mon, 6 Oct 2025 11:38:39 +0100 Subject: [PATCH] Remove debug print in AllowedExternalUrlsTransport Remove debug print statement for request URL. --- src/opencloning/http_client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/opencloning/http_client.py b/src/opencloning/http_client.py index 2be7e3f..627f548 100644 --- a/src/opencloning/http_client.py +++ b/src/opencloning/http_client.py @@ -22,7 +22,6 @@ class AllowedExternalUrlsTransport(AsyncHTTPTransport): async def handle_async_request(self, request: Request) -> Response: if any(str(request.url).startswith(url) for url in allowed_external_urls): return await super().handle_async_request(request) - print('>>>', request.url) raise HTTPError(request.url, 403, f'Request to {request.url} is not allowed', None, None)