From 741855030f4334ad5559d463304a1c907001951d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Fri, 15 Oct 2021 10:44:22 +0200 Subject: [PATCH] Removed "prints" :) --- client-py3/full/src/uds/rest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/client-py3/full/src/uds/rest.py b/client-py3/full/src/uds/rest.py index 62eaf11e..f544cab2 100644 --- a/client-py3/full/src/uds/rest.py +++ b/client-py3/full/src/uds/rest.py @@ -183,7 +183,6 @@ class RestApi: def _open( url: str, certErrorCallback: typing.Optional[CertCallbackType] = None ) -> typing.Any: - print('Open') ctx = ssl.create_default_context() ctx.check_hostname = False ctx.verify_mode = ssl.CERT_NONE @@ -246,7 +245,6 @@ class RestApi: def getUrl( url: str, certErrorCallback: typing.Optional[CertCallbackType] = None ) -> bytes: - print(url) with RestApi._open(url, certErrorCallback) as response: resp = response.read()