Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
arithmetic1728 committed Sep 28, 2023
1 parent a3e7c66 commit 6edbfd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions google/auth/transport/urllib3.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@
"urllib3 package to use the urllib3 transport."
) from caught_exc

from packaging import version
from packaging import version # type: ignore

from google.auth import environment_vars
from google.auth import exceptions
from google.auth import transport
from google.oauth2 import service_account

if version.parse(urllib3.__version__) >= version.parse("2.0.0"): # pragma: NO COVER
RequestMethods = urllib3._request_methods.RequestMethods
RequestMethods = urllib3._request_methods.RequestMethods # type: ignore
else: # pragma: NO COVER
RequestMethods = urllib3.request.RequestMethods
RequestMethods = urllib3.request.RequestMethods # type: ignore

_LOGGER = logging.getLogger(__name__)

Expand Down
Binary file modified system_tests/secrets.tar.enc
Binary file not shown.

0 comments on commit 6edbfd4

Please sign in to comment.