Skip to content

Commit

Permalink
import runtime_checkable from typing_extensions rather than typing
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-pujol committed Jan 11, 2023
1 parent 054b91b commit 39d409f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jwskate/jwa/okp.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
from __future__ import annotations

from dataclasses import dataclass
from typing import Any, ClassVar, Dict, Tuple, Type, Union, runtime_checkable
from typing import Any, ClassVar, Dict, Tuple, Type, Union

from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.asymmetric import ed448, ed25519, x448, x25519
from typing_extensions import Protocol
from typing_extensions import Protocol, runtime_checkable


@runtime_checkable
Expand Down

0 comments on commit 39d409f

Please sign in to comment.