Skip to content

Commit

Permalink
feat: Adding python3.11 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Apr 8, 2024
1 parent 801c341 commit 3193417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google_drive/google_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 3193417

Please sign in to comment.