Skip to content

Commit f1ccb28

Browse files
type fix
1 parent 54c842c commit f1ccb28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • gateway-api/src/gateway_api/clinical_jwt

gateway-api/src/gateway_api/clinical_jwt/jwt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def exp_time(self) -> str:
3636
def encode(self) -> str:
3737
return pyjwt.encode(
3838
self.payload(),
39-
key="None",
39+
key=None, # type: ignore
4040
algorithm=self.algorithm,
4141
headers={"typ": self.type},
4242
)

0 commit comments

Comments
 (0)