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 5acd6a6 commit ae26217Copy full SHA for ae26217
README.md
@@ -235,10 +235,12 @@ This can be a new repository or included in [the existing contrib repository](ht
235
You’ll then need to write the provider by implementing the `AbstractProvider` class exported by the OpenFeature SDK.
236
237
```python
238
-from typing import List, Optional
+from typing import List, Optional, Union
239
240
from openfeature.evaluation_context import EvaluationContext
241
from openfeature.flag_evaluation import FlagResolutionDetails
242
+from openfeature.hook import Hook
243
+from openfeature.provider.metadata import Metadata
244
from openfeature.provider.provider import AbstractProvider
245
246
class MyProvider(AbstractProvider):
0 commit comments