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 1198728 commit 088409eCopy full SHA for 088409e
openfeature/provider/__init__.py
@@ -112,6 +112,10 @@ async def resolve_object_details_async(
112
113
114
class AbstractProvider(FeatureProvider):
115
+ def __init__(self, *args: typing.Any, **kwargs: typing.Any) -> None:
116
+ # this makes sure to invoke the parent of `FeatureProvider` -> `object`
117
+ super(FeatureProvider, self).__init__(*args, **kwargs)
118
+
119
def attach(
120
self,
121
on_emit: typing.Callable[
0 commit comments