Skip to content

Commit 999bd45

Browse files
committed
wrong order
1 parent 2f57877 commit 999bd45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jwkest/jws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def is_jws(self, jws):
696696

697697
def _is_json_serialized_jws(self, json_jws):
698698
json_ser_keys = set(["payload", "signatures"])
699-
flattened_json_ser_keys = set[("payload", "signature")]
699+
flattened_json_ser_keys = set(["payload", "signature"])
700700
if not json_ser_keys.issubset(
701701
json_jws.keys()) and not flattened_json_ser_keys.issubset(
702702
json_jws.keys()):

0 commit comments

Comments
 (0)