summaryrefslogtreecommitdiff
path: root/jwt/api_jwt.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-12-17 16:28:58 -0800
committerGitHub <noreply@github.com>2020-12-17 19:28:58 -0500
commitd3219c5c2e4dea78955080afaaf251dd3e61bc01 (patch)
treef93ea7243ef9f8370e73c3dcd9137498ccae3884 /jwt/api_jwt.py
parentbf39b44f60a94a456b03f4e312f26cc7d82630f5 (diff)
downloadpyjwt-d3219c5c2e4dea78955080afaaf251dd3e61bc01.tar.gz
Cleanup "noqa" comments (#553)
- Remove "noqa" comments that are unnecessary - Remove unused imports from api_jwt.py
Diffstat (limited to 'jwt/api_jwt.py')
-rw-r--r--jwt/api_jwt.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/jwt/api_jwt.py b/jwt/api_jwt.py
index 60f319b..6a7f027 100644
--- a/jwt/api_jwt.py
+++ b/jwt/api_jwt.py
@@ -4,7 +4,6 @@ from collections.abc import Iterable, Mapping
from datetime import datetime, timedelta
from typing import Any, Dict, List, Optional, Type, Union
-from .algorithms import Algorithm, get_default_algorithms # NOQA
from .api_jws import PyJWS
from .exceptions import (
DecodeError,