We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 430bac6 commit adb8a69Copy full SHA for adb8a69
providers/openfeature-provider-flagd/src/openfeature/contrib/provider/flagd/resolvers/__init__.py
@@ -1,15 +1,13 @@
1
import typing
2
3
-from typing_extensions import Protocol
4
-
5
from openfeature.evaluation_context import EvaluationContext
6
from openfeature.flag_evaluation import FlagResolutionDetails
7
8
from .grpc import GrpcResolver
9
from .in_process import InProcessResolver
10
11
12
-class AbstractResolver(Protocol):
+class AbstractResolver(typing.Protocol):
13
def shutdown(self) -> None: ...
14
15
def resolve_boolean_details(
0 commit comments