summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-12-16 08:32:54 -0800
committerGitHub <noreply@github.com>2020-12-16 11:32:54 -0500
commitc69d199d31dabd0ead83ab1a2208944b580da52a (patch)
tree3f39a1390b37ccd1cc07c4ba2e76400be7138f6f
parent69cd38171971004eb8fd86ba7fa1662c20f409f5 (diff)
downloadpyjwt-c69d199d31dabd0ead83ab1a2208944b580da52a.tar.gz
Remove unused argument "verify" from PyJWS.decode() (#534)
The method signature of PyJWT.decode() now matches the parent PyJWS.decode().
-rw-r--r--jwt/api_jws.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/jwt/api_jws.py b/jwt/api_jws.py
index 26d1dfc..e96597b 100644
--- a/jwt/api_jws.py
+++ b/jwt/api_jws.py
@@ -133,7 +133,6 @@ class PyJWS:
self,
jwt, # type: str
key="", # type: str
- verify=True, # type: bool
algorithms=None, # type: List[str]
options=None, # type: Dict
complete=False, # type: bool