Skip to content

Commit 426d321

Browse files
committed
rm underscore in feature_flags to keep consistent w python sdk
1 parent 2f1b54f commit 426d321

File tree

1 file changed

+2
-2
lines changed
  • docs/platforms/python/integrations/featureflags

1 file changed

+2
-2
lines changed

docs/platforms/python/integrations/feature_flags/index.mdx renamed to docs/platforms/python/integrations/featureflags/index.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.feature_flags import FeatureFlagsIntegration
25+
from sentry_sdk.integrations.featureflags 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.feature_flags import add_feature_flag
41+
from sentry_sdk.integrations.featureflags import add_feature_flag
4242

4343
add_feature_flag('hello', False)
4444

0 commit comments

Comments
 (0)