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 87d982d commit 74fd323Copy full SHA for 74fd323
docs/platforms/python/integrations/feature-flags/self-serve.mdx
@@ -22,7 +22,7 @@ Add `FeatureFlagsIntegration()` to your `integrations` list:
22
23
```python
24
import sentry_sdk
25
-from sentry_sdk.integrations.featureflags import FeatureFlagsIntegration
+from sentry_sdk.integrations.feature_flags import FeatureFlagsIntegration
26
27
sentry_sdk.init(
28
dsn="___PUBLIC_DSN___",
@@ -38,7 +38,7 @@ The integration is tested by calling the `add_feature_flag` API before capturing
38
39
40
41
-from sentry_sdk.integrations.featureflags import add_feature_flag
+from sentry_sdk.integrations.feature_flags import add_feature_flag
42
43
add_feature_flag('test-flag', False)
44
0 commit comments