commit | 0ca0ee55dc7f8e24728c2773f57c31aa7939207a | [log] [tgz] |
---|---|---|
author | Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> | Sat Jan 18 00:38:49 2020 -0800 |
committer | Peter Lamut <plamut@users.noreply.github.com> | Sat Jan 18 08:38:49 2020 +0000 |
tree | 7286acc1271b6814a1ac7f7599fba16f2c18d45b | |
parent | c5a3395b8781e14c4566cf0e476b234d6a1c1224 [diff] [blame] |
chore: add no cover for py2 collections import (#426)
diff --git a/google/auth/jwt.py b/google/auth/jwt.py index 361c456..06e7679 100644 --- a/google/auth/jwt.py +++ b/google/auth/jwt.py
@@ -42,7 +42,8 @@ try: from collections.abc import Mapping -except ImportError: # Python 2.7 compatibility +# Python 2.7 compatibility +except ImportError: # pragma: NO COVER from collections import Mapping import copy import datetime