Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
asherf committed May 3, 2023
1 parent 642b8b6 commit fc86405
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jose/jws.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import binascii
import json

try:
from collections.abc import Mapping, Iterable
from collections.abc import Iterable, Mapping
except ImportError:
from collections import Mapping, Iterable

from jose import jwk
from jose.backends.base import Key
from jose.constants import ALGORITHMS
Expand Down
1 change: 1 addition & 0 deletions jose/jwt.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json
from calendar import timegm

try:
from collections.abc import Mapping
except ImportError:
Expand Down

0 comments on commit fc86405

Please sign in to comment.