From 8a3fa3534daa5bba41a654c337c2a06410e7b59c Mon Sep 17 00:00:00 2001 From: Robert David Grant Date: Fri, 3 May 2019 22:21:57 -0500 Subject: [PATCH] Fix a typo in a comment --- jose/jwt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jose/jwt.py b/jose/jwt.py index 84ff3c8c..ee3b98d4 100644 --- a/jose/jwt.py +++ b/jose/jwt.py @@ -5,7 +5,7 @@ try: from collections.abc import Mapping # Python3 except ImportError: - from collections import Mapping # Python2, will be depecrated in Python 3.8 + from collections import Mapping # Python2, will be deprecated in Python 3.8 from datetime import datetime from datetime import timedelta from six import string_types