diff options
| author | Mark Adams <mark@markadams.me> | 2015-03-29 15:41:00 -0500 |
|---|---|---|
| committer | Mark Adams <mark@markadams.me> | 2015-03-29 15:41:00 -0500 |
| commit | 49db1ad0c97f4d90554af52b175abf03e255f572 (patch) | |
| tree | 0e5878da3910f593d1a9999fa33cad1acf414350 /tests | |
| parent | 83d07fc98743a47ee411ce48805ddaf053672925 (diff) | |
| download | pyjwt-49db1ad0c97f4d90554af52b175abf03e255f572.tar.gz | |
Made some PEP8 fixes that came from the last commit.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_api.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index ee90762..f1734b4 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -9,9 +9,9 @@ from decimal import Decimal from jwt.algorithms import Algorithm from jwt.api import PyJWT from jwt.exceptions import ( - DecodeError, ExpiredSignatureError, InvalidAlgorithmError, - InvalidAudienceError, InvalidIssuerError, InvalidIssuedAtError, - ImmatureSignatureError + DecodeError, ExpiredSignatureError, ImmatureSignatureError, + InvalidAlgorithmError, InvalidAudienceError, InvalidIssuedAtError, + InvalidIssuerError ) from .compat import text_type, unittest |
