File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
tests/integrations/feature_flags Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class FeatureFlagsIntegration(Integration):
1616 @example
1717 ```
1818 import sentry_sdk
19- from sentry_sdk.integrations.featureflags import FeatureFlagsIntegration, add_feature_flag
19+ from sentry_sdk.integrations.feature_flags import FeatureFlagsIntegration, add_feature_flag
2020
2121 sentry_sdk.init(dsn="my_dsn", integrations=[FeatureFlagsIntegration()]);
2222
@@ -25,7 +25,7 @@ class FeatureFlagsIntegration(Integration):
2525 ```
2626 """
2727
28- identifier = "featureflags "
28+ identifier = "feature_flags "
2929
3030 @staticmethod
3131 def setup_once ():
File renamed without changes.
Original file line number Diff line number Diff line change 44import pytest
55
66import sentry_sdk
7- from sentry_sdk .integrations .featureflags import (
7+ from sentry_sdk .integrations .feature_flags import (
88 FeatureFlagsIntegration ,
99 add_feature_flag ,
1010)
You can’t perform that action at this time.
0 commit comments