From 3193417276ab9034a798ae10c99cc549d9100829 Mon Sep 17 00:00:00 2001 From: awais qureshi Date: Mon, 8 Apr 2024 17:01:11 +0500 Subject: [PATCH] feat: Adding python3.11 support. --- google_drive/google_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google_drive/google_docs.py b/google_drive/google_docs.py index 75a7501..9cb2bbc 100644 --- a/google_drive/google_docs.py +++ b/google_drive/google_docs.py @@ -155,7 +155,7 @@ def check_url(self, data, suffix=''): # pylint: disable=unused-argument } try: - url_response = requests.head(test_url) + url_response = requests.head(test_url) # pylint: disable=missing-timeout # Catch wide range of request exceptions except requests.exceptions.RequestException as ex: LOG.debug("Unable to connect to %s - %s", test_url, six.text_type(ex))