We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c842c commit f1ccb28Copy full SHA for f1ccb28
1 file changed
gateway-api/src/gateway_api/clinical_jwt/jwt.py
@@ -36,7 +36,7 @@ def exp_time(self) -> str:
36
def encode(self) -> str:
37
return pyjwt.encode(
38
self.payload(),
39
- key="None",
+ key=None, # type: ignore
40
algorithm=self.algorithm,
41
headers={"typ": self.type},
42
)
0 commit comments