From c838a89a378ba894c6166d6d70582f7624e83e78 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Fri, 17 Jan 2020 15:52:27 -0800 Subject: [PATCH] chore: add no cover for py2 collections import --- google/auth/jwt.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/google/auth/jwt.py b/google/auth/jwt.py index 361c4567a..06e767968 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