Skip to content

Commit

Permalink
chore: add no cover for py2 collections import (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 authored and plamut committed Jan 18, 2020
1 parent c5a3395 commit 0ca0ee5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion google/auth/jwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0ca0ee5

Please sign in to comment.