We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f57877 commit 999bd45Copy full SHA for 999bd45
src/jwkest/jws.py
@@ -696,7 +696,7 @@ def is_jws(self, jws):
696
697
def _is_json_serialized_jws(self, json_jws):
698
json_ser_keys = set(["payload", "signatures"])
699
- flattened_json_ser_keys = set[("payload", "signature")]
+ flattened_json_ser_keys = set(["payload", "signature"])
700
if not json_ser_keys.issubset(
701
json_jws.keys()) and not flattened_json_ser_keys.issubset(
702
json_jws.keys()):
0 commit comments