Skip to content

Commit 74fd323

Browse files
committed
Fix import path
1 parent 87d982d commit 74fd323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/platforms/python/integrations/feature-flags/self-serve.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add `FeatureFlagsIntegration()` to your `integrations` list:
2222

2323
```python
2424
import sentry_sdk
25-
from sentry_sdk.integrations.featureflags import FeatureFlagsIntegration
25+
from sentry_sdk.integrations.feature_flags import FeatureFlagsIntegration
2626

2727
sentry_sdk.init(
2828
dsn="___PUBLIC_DSN___",
@@ -38,7 +38,7 @@ The integration is tested by calling the `add_feature_flag` API before capturing
3838

3939
```python
4040
import sentry_sdk
41-
from sentry_sdk.integrations.featureflags import add_feature_flag
41+
from sentry_sdk.integrations.feature_flags import add_feature_flag
4242

4343
add_feature_flag('test-flag', False)
4444

0 commit comments

Comments
 (0)