Skip to content

Commit

Permalink
refactor: replace typing_extensions import (#98)
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Bond <[email protected]>
  • Loading branch information
federicobond authored Oct 21, 2024
1 parent 430bac6 commit adb8a69
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import typing

from typing_extensions import Protocol

from openfeature.evaluation_context import EvaluationContext
from openfeature.flag_evaluation import FlagResolutionDetails

from .grpc import GrpcResolver
from .in_process import InProcessResolver


class AbstractResolver(Protocol):
class AbstractResolver(typing.Protocol):
def shutdown(self) -> None: ...

def resolve_boolean_details(
Expand Down

0 comments on commit adb8a69

Please sign in to comment.