Skip to content

Commit 0135e14

Browse files
committed
Ran isort an black
1 parent ea95123 commit 0135e14

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/cryptojwt/utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import base64
2-
from binascii import unhexlify
3-
from email.message import EmailMessage
42
import functools
53
import importlib
64
import json
75
import re
86
import struct
9-
from typing import List
107
import warnings
8+
from binascii import unhexlify
9+
from email.message import EmailMessage
10+
from typing import List
1111

1212
from cryptojwt.exception import BadSyntax
1313

@@ -361,7 +361,7 @@ def is_json_jws(token):
361361

362362
def is_jws(token):
363363
if is_json_jws(token):
364-
return 'json'
364+
return "json"
365365
elif is_compact_jws(token):
366-
return 'compact'
366+
return "compact"
367367
return False

0 commit comments

Comments
 (0)